forked from mrq/DL-Art-School
Debug warmup state
This commit is contained in:
parent
6d85fe05f6
commit
ee2827dee9
|
@ -56,6 +56,13 @@ class GaussianDiffusionInjector(Injector):
|
||||||
self.channel_balancing_fn = None
|
self.channel_balancing_fn = None
|
||||||
assert k <= 1, 'Only one channel filtering function can be applied.'
|
assert k <= 1, 'Only one channel filtering function can be applied.'
|
||||||
|
|
||||||
|
def extra_metrics(self):
|
||||||
|
if hasattr(self, 'schedule_sampler') and isinstance(self.schedule_sampler, LossSecondMomentResampler):
|
||||||
|
return {
|
||||||
|
'sampler_warmed_up': self.schedule_sampler._warmed_up()
|
||||||
|
}
|
||||||
|
return {}
|
||||||
|
|
||||||
def forward(self, state):
|
def forward(self, state):
|
||||||
gen = self.env['generators'][self.opt['generator']]
|
gen = self.env['generators'][self.opt['generator']]
|
||||||
hq = state[self.input]
|
hq = state[self.input]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user