parser.add_argument("--no-verify-input",action='store_true',help="do not verify input to check if it's too long")
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("--max-batch-count",type=int,default=16,help="maximum batch count value for the UI")
parser.add_argument("--grid-format",type=str,default='png',help="file format for saved grids; can be png or jpg")
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-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")
parser.add_argument("--disable-pnginfo",action='store_true',help="disable saving text information about generation parameters as chunks to png files")
parser.add_argument("--inversion",action='store_true',help="switch to stable inversion version; allows for uploading embeddings; this option should be used only with textual inversion repo")