SAE, SAEHD: random flip and learn mask options now can be overridden

This commit is contained in:
Colombo 2019-10-10 22:56:57 +04:00
parent 1f27d13f61
commit e15f846d08
3 changed files with 17 additions and 9 deletions

View file

@ -123,10 +123,11 @@ class ModelBase(object):
self.options['sort_by_yaw'] = self.options.get('sort_by_yaw', False)
if ask_random_flip:
if (self.iter == 0):
self.options['random_flip'] = io.input_bool("Flip faces randomly? (y/n ?:help skip:y) : ", True, help_message="Predicted face will look more naturally without this option, but src faceset should cover all face directions as dst faceset.")
default_random_flip = self.options.get('random_flip', True)
if (self.iter == 0 or ask_override):
self.options['random_flip'] = io.input_bool(f"Flip faces randomly? (y/n ?:help skip:{yn_str[default_random_flip]}) : ", True, help_message="Predicted face will look more naturally without this option, but src faceset should cover all face directions as dst faceset.")
else:
self.options['random_flip'] = self.options.get('random_flip', True)
self.options['random_flip'] = self.options.get('random_flip', default_random_flip)
if ask_src_scale_mod:
if (self.iter == 0):