added optional parameter to skip subprompt weight normalization

allows more control when fine-tuning
This commit is contained in:
xra
2022-08-23 00:03:32 +09:00
parent a3632f5b4f
commit e4eb775b63
2 changed files with 9 additions and 4 deletions

View File

@ -233,6 +233,7 @@ def create_cmd_parser():
parser.add_argument('-i','--individual',action='store_true',help="generate individual files (default)")
parser.add_argument('-I','--init_img',type=str,help="path to input image (supersedes width and height)")
parser.add_argument('-f','--strength',default=0.75,type=float,help="strength for noising/unnoising. 0.0 preserves image exactly, 1.0 replaces it completely")
parser.add_argument('-x','--skip_normalize',action='store_true',help="skip subprompt weight normalization")
return parser
if readline_available: