nothing interesting

This commit is contained in:
iperov 2019-01-26 06:50:52 +04:00
parent 7ed7f2bab9
commit 541d6e1cc9

View file

@ -53,7 +53,7 @@ class SAEModel(ModelBase):
if is_first_run or ask_override: if is_first_run or ask_override:
default_pixel_loss = False if is_first_run else self.options.get('pixel_loss', False) default_pixel_loss = False if is_first_run else self.options.get('pixel_loss', False)
self.options['pixel_loss'] = input_bool ("Use pixel loss? (y/n, ?:help skip: n/default ) : ", default_pixel_loss, help_message="Default perceptual (DSSIM) loss good for initial understanding structure of faces. Use pixel loss after 30-40k epochs to enhance fine details.") self.options['pixel_loss'] = input_bool ("Use pixel loss? (y/n, ?:help skip: n/default ) : ", default_pixel_loss, help_message="Default DSSIM loss good for initial understanding structure of faces. Use pixel loss after 30-40k epochs to enhance fine details.")
else: else:
self.options['pixel_loss'] = self.options.get('pixel_loss', False) self.options['pixel_loss'] = self.options.get('pixel_loss', False)