webui.py 5.3 KB
Newer Older
1
import os
2
import threading
3

4
from modules.paths import script_path
5

A
first  
AUTOMATIC 已提交
6 7 8
import torch
import numpy as np
from omegaconf import OmegaConf
9 10
from PIL import Image

11
import signal
A
first  
AUTOMATIC 已提交
12 13

from ldm.util import instantiate_from_config
A
AUTOMATIC 已提交
14

15 16 17 18 19 20 21 22 23
from modules.shared import opts, cmd_opts, state
import modules.shared as shared
import modules.ui
from modules.ui import plaintext_to_html
import modules.scripts
import modules.processing as processing
import modules.sd_hijack
import modules.gfpgan_model as gfpgan
import modules.realesrgan_model as realesrgan
A
AUTOMATIC 已提交
24
import modules.esrgan_model as esrgan
25 26 27 28 29 30
import modules.images as images
import modules.lowvram
import modules.txt2img
import modules.img2img


A
AUTOMATIC 已提交
31
esrgan.load_models(cmd_opts.esrgan_models_path)
32 33
realesrgan.setup_realesrgan()
gfpgan.setup_gfpgan()
A
AUTOMATIC 已提交
34 35


A
first  
AUTOMATIC 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
def load_model_from_config(config, ckpt, verbose=False):
    print(f"Loading model from {ckpt}")
    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"]
    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)

    model.eval()
    return model

A
AUTOMATIC 已提交
54
cached_images = {}
A
first  
AUTOMATIC 已提交
55

A
AUTOMATIC 已提交
56

A
AUTOMATIC 已提交
57
def run_extras(image, gfpgan_strength, upscaling_resize, extras_upscaler_1, extras_upscaler_2, extras_upscaler_2_visibility):
58
    processing.torch_gc()
A
AUTOMATIC 已提交
59

60 61
    image = image.convert("RGB")

A
AUTOMATIC 已提交
62
    outpath = opts.outdir_samples or opts.outdir_extras_samples
A
AUTOMATIC 已提交
63

A
AUTOMATIC 已提交
64
    if gfpgan.have_gfpgan is not None and gfpgan_strength > 0:
65
        restored_img = gfpgan.gfpgan_fix_faces(np.array(image, dtype=np.uint8))
A
AUTOMATIC 已提交
66 67
        res = Image.fromarray(restored_img)

A
AUTOMATIC 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
        if gfpgan_strength < 1.0:
            res = Image.blend(image, res, gfpgan_strength)

        image = res

    if upscaling_resize != 1.0:
        def upscale(image, scaler_index, resize):
            small = image.crop((image.width // 2, image.height // 2, image.width // 2 + 10, image.height // 2 + 10))
            pixels = tuple(np.array(small).flatten().tolist())
            key = (resize, scaler_index, image.width, image.height) + pixels

            c = cached_images.get(key)
            if c is None:
                upscaler = shared.sd_upscalers[scaler_index]
                c = upscaler.upscale(image, image.width * resize, image.height * resize)
                cached_images[key] = c

            return c

        res = upscale(image, extras_upscaler_1, upscaling_resize)

        if extras_upscaler_2 != 0 and extras_upscaler_2_visibility>0:
            res2 = upscale(image, extras_upscaler_2, upscaling_resize)
            res = Image.blend(res, res2, extras_upscaler_2_visibility)
A
AUTOMATIC 已提交
92 93 94

        image = res

A
AUTOMATIC 已提交
95 96
    while len(cached_images) > 2:
        del cached_images[next(iter(cached_images.keys()))]
97

98
    images.save_image(image, outpath, "", None, '', opts.samples_format, short_filename=True, no_prompt=True)
99

A
AUTOMATIC 已提交
100
    return image, '', ''
101 102


A
AUTOMATIC 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116
def run_pnginfo(image):
    info = ''
    for key, text in image.info.items():
        info += f"""
<div>
<p><b>{plaintext_to_html(str(key))}</b></p>
<p>{plaintext_to_html(str(text))}</p>
</div>
""".strip()+"\n"

    if len(info) == 0:
        message = "Nothing found in the image."
        info = f"<div><p>{message}<p></div>"

A
AUTOMATIC 已提交
117
    return '', '', info
A
AUTOMATIC 已提交
118 119


120
queue_lock = threading.Lock()
121

A
AUTOMATIC 已提交
122

123 124
def wrap_gradio_gpu_call(func):
    def f(*args, **kwargs):
A
AUTOMATIC 已提交
125
        shared.state.sampling_step = 0
A
AUTOMATIC 已提交
126
        shared.state.job_count = -1
A
AUTOMATIC 已提交
127
        shared.state.job_no = 0
A
AUTOMATIC 已提交
128 129
        shared.state.current_latent = None
        shared.state.current_image = None
130
        shared.state.current_image_sampling_step = 0
A
AUTOMATIC 已提交
131

132 133
        with queue_lock:
            res = func(*args, **kwargs)
A
AUTOMATIC 已提交
134

135
        shared.state.job = ""
A
AUTOMATIC 已提交
136
        shared.state.job_count = 0
A
AUTOMATIC 已提交
137

138
        return res
A
AUTOMATIC 已提交
139

140
    return modules.ui.wrap_gradio_call(f)
A
AUTOMATIC 已提交
141 142


A
AUTOMATIC 已提交
143 144 145 146 147 148 149 150 151
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

A
AUTOMATIC 已提交
152
sd_config = OmegaConf.load(cmd_opts.config)
153 154
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())
155

A
AUTOMATIC 已提交
156
if cmd_opts.lowvram or cmd_opts.medvram:
157
    modules.lowvram.setup_for_low_vram(shared.sd_model, cmd_opts.medvram)
A
AUTOMATIC 已提交
158
else:
159
    shared.sd_model = shared.sd_model.to(shared.device)
A
AUTOMATIC 已提交
160

161
modules.sd_hijack.model_hijack.hijack(shared.sd_model)
162

A
AUTOMATIC 已提交
163 164
modules.scripts.load_scripts(os.path.join(script_path, "scripts"))

A
AUTOMATIC 已提交
165 166 167
if __name__ == "__main__":
    # make the program just exit at ctrl+c without waiting for anything
    def sigint_handler(sig, frame):
A
AUTOMATIC 已提交
168
        print(f'Interrupted with signal {sig} in {frame}')
A
AUTOMATIC 已提交
169
        os._exit(0)
A
first  
AUTOMATIC 已提交
170

171

A
AUTOMATIC 已提交
172
    signal.signal(signal.SIGINT, sigint_handler)
173

A
AUTOMATIC 已提交
174 175 176 177 178 179
    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(run_extras),
        run_pnginfo=run_pnginfo
    )
180

A
AUTOMATIC 已提交
181
    demo.launch(share=cmd_opts.share, server_name="0.0.0.0" if cmd_opts.listen else None)