Merge pull request #59 from hentailord85ez/master
Fixed typo 'medram' -> 'medvram' in webui.py
This commit is contained in:
commit
5c186d51d7
2
webui.py
2
webui.py
|
@ -126,7 +126,7 @@ shared.sd_model = load_model_from_config(sd_config, cmd_opts.ckpt)
|
||||||
shared.sd_model = (shared.sd_model if cmd_opts.no_half else shared.sd_model.half())
|
shared.sd_model = (shared.sd_model if cmd_opts.no_half else shared.sd_model.half())
|
||||||
|
|
||||||
if cmd_opts.lowvram or cmd_opts.medvram:
|
if cmd_opts.lowvram or cmd_opts.medvram:
|
||||||
modules.lowvram.setup_for_low_vram(shared.sd_model, cmd_opts.medram)
|
modules.lowvram.setup_for_low_vram(shared.sd_model, cmd_opts.medvram)
|
||||||
else:
|
else:
|
||||||
shared.sd_model = shared.sd_model.to(shared.device)
|
shared.sd_model = shared.sd_model.to(shared.device)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue