diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-11 20:07:09 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-11 20:07:09 +0000 |
commit | 6be32b31d181e42c639dad3451229aa7b9cfd1cf (patch) | |
tree | 59e3fcf183fa186444b450f28ae73737039dfc86 /modules/hypernetworks/ui.py | |
parent | 2f6ea2fbca4783404f03be03f3d51b0cfe0d2612 (diff) | |
download | stable-diffusion-webui-gfx803-6be32b31d181e42c639dad3451229aa7b9cfd1cf.tar.gz stable-diffusion-webui-gfx803-6be32b31d181e42c639dad3451229aa7b9cfd1cf.tar.bz2 stable-diffusion-webui-gfx803-6be32b31d181e42c639dad3451229aa7b9cfd1cf.zip |
reports that training with medvram is possible.
Diffstat (limited to 'modules/hypernetworks/ui.py')
-rw-r--r-- | modules/hypernetworks/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hypernetworks/ui.py b/modules/hypernetworks/ui.py index c67facbb..dfa599af 100644 --- a/modules/hypernetworks/ui.py +++ b/modules/hypernetworks/ui.py @@ -25,7 +25,7 @@ def train_hypernetwork(*args): initial_hypernetwork = shared.loaded_hypernetwork
- assert not shared.cmd_opts.lowvram and not shared.cmd_opts.medvram, 'Training models with lowvram or medvram is not possible'
+ assert not shared.cmd_opts.lowvram, 'Training models with lowvram is not possible'
try:
sd_hijack.undo_optimizations()
|