mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
changed default output directory to outputs/img-samples because the same directory is now used for both txt2img and img2img
This commit is contained in:
parent
d8926fb8c0
commit
4cb5fc5ed4
@ -68,6 +68,7 @@ def main():
|
|||||||
main_loop(t2i,cmd_parser,log)
|
main_loop(t2i,cmd_parser,log)
|
||||||
log.close()
|
log.close()
|
||||||
|
|
||||||
|
|
||||||
def main_loop(t2i,parser,log):
|
def main_loop(t2i,parser,log):
|
||||||
''' prompt/read/execute loop '''
|
''' prompt/read/execute loop '''
|
||||||
done = False
|
done = False
|
||||||
@ -119,6 +120,7 @@ def main_loop(t2i,parser,log):
|
|||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print('*interrupted*')
|
print('*interrupted*')
|
||||||
continue
|
continue
|
||||||
|
|
||||||
print("goodbye!")
|
print("goodbye!")
|
||||||
|
|
||||||
|
|
||||||
@ -173,7 +175,7 @@ def create_argv_parser():
|
|||||||
parser.add_argument('-o',
|
parser.add_argument('-o',
|
||||||
'--outdir',
|
'--outdir',
|
||||||
type=str,
|
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")
|
help="directory in which to place generated images and a log of prompts and seeds")
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user