@@ -50,7 +50,10 @@ parser.add_argument("--no-verify-input", action='store_true', help="do not verif
...
@@ -50,7 +50,10 @@ parser.add_argument("--no-verify-input", action='store_true', help="do not verif
parser.add_argument("--no-half",action='store_true',help="do not switch the model to 16-bit floats")
parser.add_argument("--no-half",action='store_true',help="do not switch the model to 16-bit floats")
parser.add_argument("--no-progressbar-hiding",action='store_true',help="do not hide progressbar in gradio UI (we hide it because it slows down ML if you have hardware accleration in browser)")
parser.add_argument("--no-progressbar-hiding",action='store_true',help="do not hide progressbar in gradio UI (we hide it because it slows down ML if you have hardware accleration in browser)")
parser.add_argument("--max-batch-count",type=int,default=16,help="maximum batch count value for the UI")
parser.add_argument("--max-batch-count",type=int,default=16,help="maximum batch count value for the UI")
parser.add_argument("--save-format",type=str,default='png',help="file format for saved indiviual samples; can be png or jpg")
parser.add_argument("--grid-format",type=str,default='png',help="file format for saved grids; can be png or jpg")
parser.add_argument("--grid-format",type=str,default='png',help="file format for saved grids; can be png or jpg")
parser.add_argument("--grid-extended-filename",action='store_true',help="save grid images to filenames with extended info: seed, prompt")
parser.add_argument("--jpeg-quality",type=int,default=80,help="quality for saved jpeg images")