diff options
author | papuSpartan <macabeg@icloud.com> | 2023-04-04 07:26:44 +0000 |
---|---|---|
committer | papuSpartan <macabeg@icloud.com> | 2023-04-04 07:26:44 +0000 |
commit | 5c8e53d5e98da0eabf384318955c57842d612c07 (patch) | |
tree | 62686f3d064381bb606624f0fc53ea97b5f4e9b4 /modules/cmd_args.py | |
parent | c707b7df95a61b66a05be94e805e1be9a432e294 (diff) | |
download | stable-diffusion-webui-gfx803-5c8e53d5e98da0eabf384318955c57842d612c07.tar.gz stable-diffusion-webui-gfx803-5c8e53d5e98da0eabf384318955c57842d612c07.tar.bz2 stable-diffusion-webui-gfx803-5c8e53d5e98da0eabf384318955c57842d612c07.zip |
Allow different merge ratios to be used for each pass. Make toggle cmd flag work again. Remove ratio flag. Remove warning about controlnet being incompatible
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r-- | modules/cmd_args.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py index 4314f97b..8e5a7fab 100644 --- a/modules/cmd_args.py +++ b/modules/cmd_args.py @@ -103,5 +103,4 @@ parser.add_argument("--no-hashing", action='store_true', help="disable sha256 ha parser.add_argument("--no-download-sd-model", action='store_true', help="don't download SD1.5 model even if no model is found in --ckpt-dir", default=False)
# token merging / tomesd
-parser.add_argument("--token-merging", action='store_true', help="Provides generation speedup by merging redundant tokens. (compatible with --xformers)", default=False)
-parser.add_argument("--token-merging-ratio", type=float, help="Adjusts ratio of merged to untouched tokens. Range: (0.0-1.0], Defaults to 0.5", default=0.5)
+parser.add_argument("--token-merging", action='store_true', help="Provides speed and memory improvements by merging redundant tokens. This has a more pronounced effect on higher resolutions.", default=False)
|