diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2024-03-02 03:38:50 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2024-03-02 03:54:52 +0000 |
commit | 978c7fadb35e0955fdaf17afc9a8fb27f6c10e49 (patch) | |
tree | 9d3da96cd448046c18bf1543b416a46bb10c31f8 /modules | |
parent | d558cb69b0299cfbd15d693492d489a858b027f2 (diff) | |
download | stable-diffusion-webui-gfx803-978c7fadb35e0955fdaf17afc9a8fb27f6c10e49.tar.gz stable-diffusion-webui-gfx803-978c7fadb35e0955fdaf17afc9a8fb27f6c10e49.tar.bz2 stable-diffusion-webui-gfx803-978c7fadb35e0955fdaf17afc9a8fb27f6c10e49.zip |
Merge pull request #15039 from light-and-ray/dat_cmd_flag
dat cmd flag
Diffstat (limited to 'modules')
-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 312dabff..213cba98 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -53,6 +53,7 @@ parser.add_argument("--gfpgan-models-path", type=normalized_filepath, help="Path parser.add_argument("--esrgan-models-path", type=normalized_filepath, help="Path to directory with ESRGAN model file(s).", default=os.path.join(models_path, 'ESRGAN'))
parser.add_argument("--bsrgan-models-path", type=normalized_filepath, help="Path to directory with BSRGAN model file(s).", default=os.path.join(models_path, 'BSRGAN'))
parser.add_argument("--realesrgan-models-path", type=normalized_filepath, help="Path to directory with RealESRGAN model file(s).", default=os.path.join(models_path, 'RealESRGAN'))
+parser.add_argument("--dat-models-path", type=normalized_filepath, help="Path to directory with DAT model file(s).", default=os.path.join(models_path, 'DAT'))
parser.add_argument("--clip-models-path", type=normalized_filepath, help="Path to directory with CLIP model file(s).", default=None)
parser.add_argument("--xformers", action='store_true', help="enable xformers for cross attention layers")
parser.add_argument("--force-enable-xformers", action='store_true', help="enable xformers for cross attention layers regardless of whether the checking code thinks you can run it; do not make bug reports if this fails to work")
|