aboutsummaryrefslogtreecommitdiff
path: root/modules/shared.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-10-10 20:45:14 +0300
committerGitHub <noreply@github.com>2022-10-10 20:45:14 +0300
commitb3d3b335cf5fb6904d12af16b6a1cedab1c5106f (patch)
treecb3e7c39936dae5357ed355605d26b2c8e29c6e5 /modules/shared.py
parent39919c40dd18f5a14ae21403efea1b0f819756c7 (diff)
parentaf62ad4d25dcd0454944368f4925d83101cdedbc (diff)
Merge pull request #2131 from ssysm/upstream-master
Add VAE Path Arguments
Diffstat (limited to 'modules/shared.py')
-rw-r--r--modules/shared.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py
index b1c65ecf..da389f9c 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -66,6 +66,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)
parser.add_argument("--disable-safe-unpickle", action='store_true', help="disable checking pytorch models for malicious code", default=False)