fixed help text returned by dream.py

This commit is contained in:
Lincoln Stein 2022-08-16 22:23:24 -04:00
parent 2dc0475d83
commit 6126f09c04

View File

@ -101,11 +101,11 @@ def create_argv_parser():
parser.add_argument('-n','--iterations',
type=int,
default=1,
help="number of images to produce per sampling (overrides -n<iterations>, faster but doesn't produce individual seeds)")
help="number of images to generate")
parser.add_argument('-b','--batch',
type=int,
default=1,
help="number of images to produce per sampling (currently broken")
help="number of images to produce iteration (currently not working properly - producing too many images)")
parser.add_argument('--sampler',
choices=['plms','ddim'],
default='plms',