From ab504ec6ce326999e568d767aae0a1e5d5aa669b Mon Sep 17 00:00:00 2001 From: fakerdaker <52134018+Fakerdaker@users.noreply.github.com> Date: Mon, 22 Jul 2019 18:50:46 -0400 Subject: [PATCH] Update ModelBase.py --- models/ModelBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/ModelBase.py b/models/ModelBase.py index e890975..b823a74 100644 --- a/models/ModelBase.py +++ b/models/ModelBase.py @@ -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(): 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") else: choose_preview_history = False