diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-02-19 11:37:40 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-02-19 11:37:40 +0000 |
commit | c77f01ff31072715afe80413ecaf6b3d00797d34 (patch) | |
tree | f00c886f5be486e8a8fc38091b6ad05bc638ec48 /modules/shared.py | |
parent | 72022133581e47a5b65075777522b392fb77b285 (diff) | |
download | stable-diffusion-webui-gfx803-c77f01ff31072715afe80413ecaf6b3d00797d34.tar.gz stable-diffusion-webui-gfx803-c77f01ff31072715afe80413ecaf6b3d00797d34.tar.bz2 stable-diffusion-webui-gfx803-c77f01ff31072715afe80413ecaf6b3d00797d34.zip |
fix auto sd download issue
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index 2c2edfbd..805f9cc1 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -108,6 +108,7 @@ parser.add_argument("--server-name", type=str, help="Sets hostname of server", d parser.add_argument("--gradio-queue", action='store_true', help="Uses gradio queue; experimental option; breaks restart UI button")
parser.add_argument("--skip-version-check", action='store_true', help="Do not check versions of torch and xformers")
parser.add_argument("--no-hashing", action='store_true', help="disable sha256 hashing of checkpoints to help loading performance", default=False)
+parser.add_argument("--no-download-sd-model", action='store_true', help="don't download SD1.5 model even if no model is found in --ckpt-dir", default=False)
script_loading.preload_extensions(extensions.extensions_dir, parser)
|