mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fixed filename generation so that newer files are always chronologically later
This commit is contained in:
parent
dc788f92b3
commit
1f2e52a1d6
@ -86,6 +86,11 @@ completely). The default is 0.75, and ranges from 0.25-0.75 give interesting res
|
|||||||
|
|
||||||
## Changes
|
## Changes
|
||||||
|
|
||||||
|
* v1.06 (23 August 2022)
|
||||||
|
* Image filenames will now never fill gaps in the sequence, but will be assigned the
|
||||||
|
next higher name in the chosen directory. This ensures that the alphabetic and chronological
|
||||||
|
sort orders are the same.
|
||||||
|
|
||||||
* v1.05 (22 August 2022 - after the drop)
|
* v1.05 (22 August 2022 - after the drop)
|
||||||
* Filenames now use the following formats:
|
* Filenames now use the following formats:
|
||||||
000010.95183149.png -- Two files produced by the same command (e.g. -n2),
|
000010.95183149.png -- Two files produced by the same command (e.g. -n2),
|
||||||
@ -474,6 +479,7 @@ optional arguments:
|
|||||||
--f F downsampling factor
|
--f F downsampling factor
|
||||||
--n_samples N_SAMPLES
|
--n_samples N_SAMPLES
|
||||||
how many samples to produce for each given prompt. A.k.a. batch size
|
how many samples to produce for each given prompt. A.k.a. batch size
|
||||||
|
(note that the seeds for each image in the batch will be unavailable)
|
||||||
--n_rows N_ROWS rows in the grid (default: n_samples)
|
--n_rows N_ROWS rows in the grid (default: n_samples)
|
||||||
--scale SCALE unconditional guidance scale: eps = eps(x, empty) + scale * (eps(x, cond) - eps(x, empty))
|
--scale SCALE unconditional guidance scale: eps = eps(x, empty) + scale * (eps(x, cond) - eps(x, empty))
|
||||||
--from-file FROM_FILE
|
--from-file FROM_FILE
|
||||||
|
@ -263,8 +263,8 @@ def create_argv_parser():
|
|||||||
choices=['plms','ddim', 'klms'],
|
choices=['plms','ddim', 'klms'],
|
||||||
default='klms',
|
default='klms',
|
||||||
help="which sampler to use (klms) - can only be set on command line")
|
help="which sampler to use (klms) - can only be set on command line")
|
||||||
parser.add_argument('-o',
|
parser.add_argument('--outdir',
|
||||||
'--outdir',
|
'-o',
|
||||||
type=str,
|
type=str,
|
||||||
default="outputs/img-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")
|
||||||
@ -276,8 +276,8 @@ def create_cmd_parser():
|
|||||||
parser.add_argument('prompt')
|
parser.add_argument('prompt')
|
||||||
parser.add_argument('-s','--steps',type=int,help="number of steps")
|
parser.add_argument('-s','--steps',type=int,help="number of steps")
|
||||||
parser.add_argument('-S','--seed',type=int,help="image seed")
|
parser.add_argument('-S','--seed',type=int,help="image seed")
|
||||||
parser.add_argument('-n','--iterations',type=int,default=1,help="number of samplings to perform")
|
parser.add_argument('-n','--iterations',type=int,default=1,help="number of samplings to perform (slower, but will provide seeds for individual images)")
|
||||||
parser.add_argument('-b','--batch_size',type=int,default=1,help="number of images to produce per sampling")
|
parser.add_argument('-b','--batch_size',type=int,default=1,help="number of images to produce per sampling (will not provide seeds for individual images!)")
|
||||||
parser.add_argument('-W','--width',type=int,help="image width, multiple of 64")
|
parser.add_argument('-W','--width',type=int,help="image width, multiple of 64")
|
||||||
parser.add_argument('-H','--height',type=int,help="image height, multiple of 64")
|
parser.add_argument('-H','--height',type=int,help="image height, multiple of 64")
|
||||||
parser.add_argument('-C','--cfg_scale',default=7.5,type=float,help="prompt configuration scale")
|
parser.add_argument('-C','--cfg_scale',default=7.5,type=float,help="prompt configuration scale")
|
||||||
|
Loading…
Reference in New Issue
Block a user