diff options
author | Jabasukuriputo Wang <wfjsw@users.noreply.github.com> | 2023-07-19 02:33:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-19 02:33:31 +0000 |
commit | fc3bdf8c1184de1116fe9f30b72905b4b3285e74 (patch) | |
tree | 64e993c6bce48ddd4fb2d60fd5105bd6c725d52c /modules/cmd_args.py | |
parent | 3c570421d3a2eb24528b5f5bb615dcb0c7717e4a (diff) | |
parent | b010eea520caa90d2a31d98ec7c4a9d9d540c9ad (diff) | |
download | stable-diffusion-webui-gfx803-fc3bdf8c1184de1116fe9f30b72905b4b3285e74.tar.gz stable-diffusion-webui-gfx803-fc3bdf8c1184de1116fe9f30b72905b4b3285e74.tar.bz2 stable-diffusion-webui-gfx803-fc3bdf8c1184de1116fe9f30b72905b4b3285e74.zip |
Merge branch 'dev' into move-start-timer
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r-- | modules/cmd_args.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index ae78f469..e401f641 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -15,6 +15,7 @@ parser.add_argument("--update-check", action='store_true', help="launch.py argum parser.add_argument("--test-server", action='store_true', help="launch.py argument: configure server for testing")
parser.add_argument("--skip-prepare-environment", action='store_true', help="launch.py argument: skip all environment preparation")
parser.add_argument("--skip-install", action='store_true', help="launch.py argument: skip installation of packages")
+parser.add_argument("--do-not-download-clip", action='store_true', help="do not download CLIP model even if it's not included in the checkpoint")
parser.add_argument("--data-dir", type=str, default=os.path.dirname(os.path.dirname(os.path.realpath(__file__))), help="base path where all user data is stored")
parser.add_argument("--config", type=str, default=sd_default_config, help="path to config which constructs model",)
parser.add_argument("--ckpt", type=str, default=sd_model_file, help="path to checkpoint of stable diffusion model; if specified, this checkpoint will be added to the list of checkpoints and loaded",)
|