diff options
author | yfszzx <yfszzx@gmail.com> | 2022-10-20 23:58:52 +0800 |
---|---|---|
committer | yfszzx <yfszzx@gmail.com> | 2022-10-20 23:58:52 +0800 |
commit | d07cb46f34b3d9fe7a78b102f899ebef352ea56b (patch) | |
tree | 5f64790fd3e3060892f6120033ac822ac37d3345 /modules/shared.py | |
parent | 604620a7f08d1126a8689f9f4bec8ade0801a69b (diff) |
inspiration pull request
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 faede821..ae033710 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -78,6 +78,7 @@ parser.add_argument('--vae-path', type=str, help='Path to Variational Autoencode parser.add_argument("--disable-safe-unpickle", action='store_true', help="disable checking pytorch models for malicious code", default=False)
parser.add_argument("--api", action='store_true', help="use api=True to launch the api with the webui")
parser.add_argument("--nowebui", action='store_true', help="use api=True to launch the api instead of the webui")
+parser.add_argument("--ui-debug-mode", action='store_true', help="Don't load model to quickly launch UI")
cmd_opts = parser.parse_args()
restricted_opts = [
|