diff options
author | supersteve3d <39339941+supersteve3d@users.noreply.github.com> | 2022-10-12 00:21:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 00:21:52 +0000 |
commit | 65b973ac4e547a325f30a05f852b161421af2041 (patch) | |
tree | ab83085563756874c2f7abe5c568d390febd44f4 | |
parent | 6be32b31d181e42c639dad3451229aa7b9cfd1cf (diff) | |
download | stable-diffusion-webui-gfx803-65b973ac4e547a325f30a05f852b161421af2041.tar.gz stable-diffusion-webui-gfx803-65b973ac4e547a325f30a05f852b161421af2041.tar.bz2 stable-diffusion-webui-gfx803-65b973ac4e547a325f30a05f852b161421af2041.zip |
Update shared.py
Correct typo to "Unload VAE and CLIP from VRAM when training" in settings tab.
-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 c1092ff7..46bc740c 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -229,7 +229,7 @@ options_templates.update(options_section(('system', "System"), { }))
options_templates.update(options_section(('training', "Training"), {
- "unload_models_when_training": OptionInfo(False, "Unload VAE and CLIP form VRAM when training"),
+ "unload_models_when_training": OptionInfo(False, "Unload VAE and CLIP from VRAM when training"),
}))
options_templates.update(options_section(('sd', "Stable Diffusion"), {
|