diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-18 08:14:42 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-18 08:14:42 +0000 |
commit | 3f29aa791bceea0b0de99263dd0a7f08c0551549 (patch) | |
tree | 5eb9b04951fbb6b50ea0afe134bac1b1330bec86 /modules/shared.py | |
parent | b273458d2d37ec59f61d5008bbfb7be2c3013850 (diff) | |
download | stable-diffusion-webui-gfx803-3f29aa791bceea0b0de99263dd0a7f08c0551549.tar.gz stable-diffusion-webui-gfx803-3f29aa791bceea0b0de99263dd0a7f08c0551549.tar.bz2 stable-diffusion-webui-gfx803-3f29aa791bceea0b0de99263dd0a7f08c0551549.zip |
altered progressbar to not rely on first progress request coming after the job has started; may help with broken progressbar some people say they have
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index 3c3aa9b6..c5742c10 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -31,7 +31,7 @@ parser.add_argument("--embeddings-dir", type=str, default=os.path.join(script_pa parser.add_argument("--allow-code", action='store_true', help="allow custom script execution from webui")
parser.add_argument("--medvram", action='store_true', help="enable stable diffusion model optimizations for sacrificing a little speed for low VRM usage")
parser.add_argument("--lowvram", action='store_true', help="enable stable diffusion model optimizations for sacrificing a lot of speed for very low VRM usage")
-parser.add_argument("--always-batch-cond-uncond", action='store_true', help="a workaround test; may help with speed if you use --lowvram")
+parser.add_argument("--always-batch-cond-uncond", action='store_true', help="disables cond/uncond batching that is enabled to save memory with --medvram or --lowvram")
parser.add_argument("--unload-gfpgan", action='store_true', help="does not do anything.")
parser.add_argument("--precision", type=str, help="evaluate at this precision", choices=["full", "autocast"], default="autocast")
parser.add_argument("--share", action='store_true', help="use share=True for gradio and make the UI accessible through their site (doesn't work for me but you might have better luck)")
|