WebUI/modules/hypernetworks/ui.py

48 lines
1.5 KiB
Python
Raw Normal View History

2022-10-07 20:22:22 +00:00
import html
import os
import gradio as gr
import modules.textual_inversion.textual_inversion
import modules.textual_inversion.preprocess
from modules import sd_hijack, shared, devices
from modules.hypernetworks import hypernetwork
2022-10-07 20:22:22 +00:00
def create_hypernetwork(name, enable_sizes):
2022-10-07 20:22:22 +00:00
fn = os.path.join(shared.cmd_opts.hypernetwork_dir, f"{name}.pt")
assert not os.path.exists(fn), f"file {fn} already exists"
hypernet = modules.hypernetworks.hypernetwork.Hypernetwork(name=name, enable_sizes=[int(x) for x in enable_sizes])
2022-10-11 11:53:02 +00:00
hypernet.save(fn)
2022-10-07 20:22:22 +00:00
shared.reload_hypernetworks()
return gr.Dropdown.update(choices=sorted([x for x in shared.hypernetworks.keys()])), f"Created: {fn}", ""
def train_hypernetwork(*args):
2022-10-11 11:53:02 +00:00
initial_hypernetwork = shared.loaded_hypernetwork
2022-10-07 20:22:22 +00:00
assert not shared.cmd_opts.lowvram, 'Training models with lowvram is not possible'
2022-10-07 20:22:22 +00:00
try:
sd_hijack.undo_optimizations()
2022-10-11 12:54:34 +00:00
hypernetwork, filename = modules.hypernetworks.hypernetwork.train_hypernetwork(*args)
2022-10-07 20:22:22 +00:00
res = f"""
Training {'interrupted' if shared.state.interrupted else 'finished'} at {hypernetwork.step} steps.
Hypernetwork saved to {html.escape(filename)}
"""
return res, ""
except Exception:
raise
finally:
2022-10-11 11:53:02 +00:00
shared.loaded_hypernetwork = initial_hypernetwork
shared.sd_model.cond_stage_model.to(devices.device)
shared.sd_model.first_stage_model.to(devices.device)
2022-10-07 20:22:22 +00:00
sd_hijack.apply_optimizations()