diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-06 23:08:11 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-06 23:08:11 +0000 |
commit | 23ee74e9e387e00263ae90181b9dccdaa191cfe4 (patch) | |
tree | 255872cda6705748dd1ce3d5d8912f1b6461c800 /modules/shared.py | |
parent | a1743e4518e5770296f097d7d1d29094c2b6bae4 (diff) | |
download | stable-diffusion-webui-gfx803-23ee74e9e387e00263ae90181b9dccdaa191cfe4.tar.gz stable-diffusion-webui-gfx803-23ee74e9e387e00263ae90181b9dccdaa191cfe4.tar.bz2 stable-diffusion-webui-gfx803-23ee74e9e387e00263ae90181b9dccdaa191cfe4.zip |
fix error with --help #91
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 49f17145..548e7356 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -30,7 +30,7 @@ parser.add_argument("--unload-gfpgan", action='store_true', help="unload GFPGAN parser.add_argument("--precision", type=str, help="evaluate at this precision", choices=["full", "autocast"], default="autocast")
parser.add_argument("--share", action='store_true', help="use share=True for gradio and make the UI accessible through their site (doesn't work for me but you might have better luck)")
parser.add_argument("--esrgan-models-path", type=str, help="path to directory with ESRGAN models", default=os.path.join(script_path, 'ESRGAN'))
-parser.add_argument("--opt-split-attention", action='store_true', help="enable optimization that reduced vram usage by a lot for about 10% decrease in performance")
+parser.add_argument("--opt-split-attention", action='store_true', help="enable optimization that reduced vram usage by a lot for about 10%% decrease in performance")
parser.add_argument("--listen", action='store_true', help="launch gradio with 0.0.0.0 as server name, allowing to respond to network requests")
cmd_opts = parser.parse_args()
|