From 4cb5fc5ed4bf6ff525b7a5f7c3282dc5bda87cda Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Thu, 18 Aug 2022 23:23:44 -0400 Subject: [PATCH] changed default output directory to outputs/img-samples because the same directory is now used for both txt2img and img2img --- scripts/dream.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/dream.py b/scripts/dream.py index 60e1f19f49..c1853dbdd5 100755 --- a/scripts/dream.py +++ b/scripts/dream.py @@ -68,6 +68,7 @@ def main(): main_loop(t2i,cmd_parser,log) log.close() + def main_loop(t2i,parser,log): ''' prompt/read/execute loop ''' done = False @@ -119,6 +120,7 @@ def main_loop(t2i,parser,log): except KeyboardInterrupt: print('*interrupted*') continue + print("goodbye!") @@ -173,7 +175,7 @@ def create_argv_parser(): parser.add_argument('-o', '--outdir', type=str, - default="outputs/txt2img-samples", + default="outputs/img-samples", help="directory in which to place generated images and a log of prompts and seeds") return parser