stable-diffusion-webui/webui.py

138 lines
3.9 KiB
Python
Raw Normal View History

import os
import threading
from modules.paths import script_path
2022-08-22 14:15:46 +00:00
import torch
from omegaconf import OmegaConf
import signal
2022-08-22 14:15:46 +00:00
from ldm.util import instantiate_from_config
from modules.shared import opts, cmd_opts, state
import modules.shared as shared
import modules.ui
import modules.scripts
import modules.sd_hijack
2022-09-07 09:32:28 +00:00
import modules.codeformer_model
import modules.gfpgan_model
import modules.face_restoration
import modules.realesrgan_model as realesrgan
2022-09-04 15:54:12 +00:00
import modules.esrgan_model as esrgan
2022-09-11 15:48:36 +00:00
import modules.extras
import modules.lowvram
import modules.txt2img
import modules.img2img
2022-09-07 09:32:28 +00:00
modules.codeformer_model.setup_codeformer()
modules.gfpgan_model.setup_gfpgan()
shared.face_restorers.append(modules.face_restoration.FaceRestoration())
2022-09-04 15:54:12 +00:00
esrgan.load_models(cmd_opts.esrgan_models_path)
realesrgan.setup_realesrgan()
2022-09-11 15:48:36 +00:00
2022-08-22 14:15:46 +00:00
def load_model_from_config(config, ckpt, verbose=False):
print(f"Loading model [{shared.sd_model_hash}] from {ckpt}")
2022-08-22 14:15:46 +00:00
pl_sd = torch.load(ckpt, map_location="cpu")
if "global_step" in pl_sd:
print(f"Global Step: {pl_sd['global_step']}")
sd = pl_sd["state_dict"]
2022-08-22 14:15:46 +00:00
model = instantiate_from_config(config.model)
m, u = model.load_state_dict(sd, strict=False)
if len(m) > 0 and verbose:
print("missing keys:")
print(m)
if len(u) > 0 and verbose:
print("unexpected keys:")
print(u)
2022-09-12 13:52:06 +00:00
if cmd_opts.opt_channelslast:
2022-09-12 13:26:42 +00:00
model = model.to(memory_format=torch.channels_last)
2022-08-22 14:15:46 +00:00
model.eval()
return model
queue_lock = threading.Lock()
def wrap_gradio_gpu_call(func):
def f(*args, **kwargs):
shared.state.sampling_step = 0
shared.state.job_count = -1
shared.state.job_no = 0
2022-09-06 16:33:51 +00:00
shared.state.current_latent = None
shared.state.current_image = None
shared.state.current_image_sampling_step = 0
with queue_lock:
res = func(*args, **kwargs)
shared.state.job = ""
shared.state.job_count = 0
return res
return modules.ui.wrap_gradio_call(f)
modules.scripts.load_scripts(os.path.join(script_path, "scripts"))
try:
# this silences the annoying "Some weights of the model checkpoint were not used when initializing..." message at start.
from transformers import logging
logging.set_verbosity_error()
except Exception:
pass
with open(cmd_opts.ckpt, "rb") as file:
import hashlib
m = hashlib.sha256()
file.seek(0x100000)
m.update(file.read(0x10000))
shared.sd_model_hash = m.hexdigest()[0:8]
2022-09-01 18:26:46 +00:00
sd_config = OmegaConf.load(cmd_opts.config)
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())
2022-09-01 18:26:46 +00:00
if cmd_opts.lowvram or cmd_opts.medvram:
modules.lowvram.setup_for_low_vram(shared.sd_model, cmd_opts.medvram)
2022-09-01 18:26:46 +00:00
else:
shared.sd_model = shared.sd_model.to(shared.device)
modules.sd_hijack.model_hijack.hijack(shared.sd_model)
def webui():
2022-09-06 05:54:11 +00:00
# make the program just exit at ctrl+c without waiting for anything
def sigint_handler(sig, frame):
2022-09-06 16:33:51 +00:00
print(f'Interrupted with signal {sig} in {frame}')
2022-09-06 05:54:11 +00:00
os._exit(0)
2022-08-22 14:15:46 +00:00
2022-09-06 05:54:11 +00:00
signal.signal(signal.SIGINT, sigint_handler)
2022-09-06 05:54:11 +00:00
demo = modules.ui.create_ui(
txt2img=wrap_gradio_gpu_call(modules.txt2img.txt2img),
img2img=wrap_gradio_gpu_call(modules.img2img.img2img),
run_extras=wrap_gradio_gpu_call(modules.extras.run_extras),
run_pnginfo=modules.extras.run_pnginfo
2022-09-06 05:54:11 +00:00
)
demo.launch(
share=cmd_opts.share,
server_name="0.0.0.0" if cmd_opts.listen else None,
server_port=cmd_opts.port,
debug=cmd_opts.gradio_debug,
2022-09-12 12:52:16 +00:00
auth=[tuple(cred.split(':')) for cred in cmd_opts.gradio_auth.strip('"').split(',')] if cmd_opts.gradio_auth else None,
)
2022-09-11 15:48:36 +00:00
if __name__ == "__main__":
webui()