mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-22 06:23:20 -07:00
Update ModelBase.py
This commit is contained in:
parent
6822fc1b5e
commit
ab504ec6ce
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class ModelBase(object):
|
||||||
|
|
||||||
if (self.iter == 0 or ask_override) and self.options['write_preview_history'] and io.is_support_windows():
|
if (self.iter == 0 or ask_override) and self.options['write_preview_history'] and io.is_support_windows():
|
||||||
choose_preview_history = io.input_bool("Choose image for the preview history? (y/n skip:%s) : " % (yn_str[False]) , False)
|
choose_preview_history = io.input_bool("Choose image for the preview history? (y/n skip:%s) : " % (yn_str[False]) , False)
|
||||||
elif (self.iter != 0 or ask_override) and self.options['write_preview_history'] and io.is_colab():
|
elif (self.iter == 0 or ask_override) and self.options['write_preview_history'] and io.is_colab():
|
||||||
choose_preview_history = io.input_bool("Randomly choose new image for preview history? (y/n ?:help skip:%s) : " % (yn_str[False]), False, help_message="Preview image history will stay stuck with old faces if you reuse the same model on different celebs. Choose no unless you are changing src/dst to a new person")
|
choose_preview_history = io.input_bool("Randomly choose new image for preview history? (y/n ?:help skip:%s) : " % (yn_str[False]), False, help_message="Preview image history will stay stuck with old faces if you reuse the same model on different celebs. Choose no unless you are changing src/dst to a new person")
|
||||||
else:
|
else:
|
||||||
choose_preview_history = False
|
choose_preview_history = False
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue