diff options
author | ssysm <me@theeditorstudio.com> | 2022-10-10 03:17:29 +0000 |
---|---|---|
committer | ssysm <me@theeditorstudio.com> | 2022-10-10 03:17:29 +0000 |
commit | cc92dc1f8d73dd4d574c4c8ccab78b7fc61e440b (patch) | |
tree | 5804c71f842a2cf696c5f69a6e20772f64a97078 /modules/shared.py | |
parent | 050a6a798cec90ae2f881c2ddd3f0221e69907dc (diff) | |
download | stable-diffusion-webui-gfx803-cc92dc1f8d73dd4d574c4c8ccab78b7fc61e440b.tar.gz stable-diffusion-webui-gfx803-cc92dc1f8d73dd4d574c4c8ccab78b7fc61e440b.tar.bz2 stable-diffusion-webui-gfx803-cc92dc1f8d73dd4d574c4c8ccab78b7fc61e440b.zip |
add vae path args
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 2dc092d6..52ccfa6e 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -64,7 +64,7 @@ parser.add_argument("--autolaunch", action='store_true', help="open the webui UR parser.add_argument("--use-textbox-seed", action='store_true', help="use textbox for seeds in UI (no up/down, but possible to input long seeds)", default=False)
parser.add_argument("--disable-console-progressbars", action='store_true', help="do not output progressbars to console", default=False)
parser.add_argument("--enable-console-prompts", action='store_true', help="print prompts to console when generating with txt2img and img2img", default=False)
-
+parser.add_argument('--vae-path', type=str, help='Path to Variational Autoencoders model', default=None)
cmd_opts = parser.parse_args()
|