2022-08-27 18:32:28 +00:00
|
|
|
import os
|
2022-09-03 09:08:45 +00:00
|
|
|
import threading
|
2022-10-01 20:47:42 +00:00
|
|
|
import time
|
2022-10-01 21:50:03 +00:00
|
|
|
import importlib
|
2022-09-29 08:32:12 +00:00
|
|
|
from modules import devices
|
2022-09-03 09:08:45 +00:00
|
|
|
from modules.paths import script_path
|
2022-08-31 08:04:19 +00:00
|
|
|
import signal
|
2022-09-26 14:29:50 +00:00
|
|
|
import threading
|
2022-09-29 22:46:23 +00:00
|
|
|
import modules.paths
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.codeformer_model as codeformer
|
2022-09-04 15:54:12 +00:00
|
|
|
import modules.esrgan_model as esrgan
|
2022-09-29 22:46:23 +00:00
|
|
|
import modules.bsrgan_model as bsrgan
|
2022-09-11 15:48:36 +00:00
|
|
|
import modules.extras
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.face_restoration
|
|
|
|
import modules.gfpgan_model as gfpgan
|
2022-09-03 09:08:45 +00:00
|
|
|
import modules.img2img
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.ldsr_model as ldsr
|
|
|
|
import modules.lowvram
|
|
|
|
import modules.realesrgan_model as realesrgan
|
|
|
|
import modules.scripts
|
|
|
|
import modules.sd_hijack
|
2022-09-17 09:05:04 +00:00
|
|
|
import modules.sd_models
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.shared as shared
|
|
|
|
import modules.swinir_model as swinir
|
|
|
|
import modules.txt2img
|
|
|
|
import modules.ui
|
2022-09-26 15:27:18 +00:00
|
|
|
from modules import modelloader
|
2022-09-26 14:29:50 +00:00
|
|
|
from modules.paths import script_path
|
|
|
|
from modules.shared import cmd_opts
|
2022-09-03 09:08:45 +00:00
|
|
|
|
2022-09-26 15:27:18 +00:00
|
|
|
modelloader.cleanup_models()
|
2022-09-30 08:42:40 +00:00
|
|
|
modules.sd_models.setup_model(cmd_opts.ckpt_dir)
|
2022-09-26 14:29:50 +00:00
|
|
|
codeformer.setup_model(cmd_opts.codeformer_models_path)
|
|
|
|
gfpgan.setup_model(cmd_opts.gfpgan_models_path)
|
2022-09-07 09:32:28 +00:00
|
|
|
shared.face_restorers.append(modules.face_restoration.FaceRestoration())
|
2022-09-29 22:46:23 +00:00
|
|
|
modelloader.load_upscalers()
|
2022-09-17 09:05:04 +00:00
|
|
|
queue_lock = threading.Lock()
|
2022-09-11 15:48:36 +00:00
|
|
|
|
2022-09-08 09:17:26 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
def wrap_queued_call(func):
|
|
|
|
def f(*args, **kwargs):
|
|
|
|
with queue_lock:
|
|
|
|
res = func(*args, **kwargs)
|
2022-08-22 14:15:46 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
return res
|
2022-08-29 17:10:59 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
return f
|
2022-08-27 18:32:28 +00:00
|
|
|
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
def wrap_gradio_gpu_call(func):
|
|
|
|
def f(*args, **kwargs):
|
2022-09-29 08:32:12 +00:00
|
|
|
devices.torch_gc()
|
|
|
|
|
2022-09-05 23:09:01 +00:00
|
|
|
shared.state.sampling_step = 0
|
2022-09-06 07:11:25 +00:00
|
|
|
shared.state.job_count = -1
|
2022-09-05 23:09:01 +00:00
|
|
|
shared.state.job_no = 0
|
2022-09-25 12:45:20 +00:00
|
|
|
shared.state.job_timestamp = shared.state.get_job_timestamp()
|
2022-09-06 16:33:51 +00:00
|
|
|
shared.state.current_latent = None
|
|
|
|
shared.state.current_image = None
|
2022-09-06 20:10:12 +00:00
|
|
|
shared.state.current_image_sampling_step = 0
|
2022-09-23 05:48:19 +00:00
|
|
|
shared.state.interrupted = False
|
2022-09-05 23:09:01 +00:00
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
with queue_lock:
|
|
|
|
res = func(*args, **kwargs)
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
shared.state.job = ""
|
2022-09-05 23:09:01 +00:00
|
|
|
shared.state.job_count = 0
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-09-29 08:32:12 +00:00
|
|
|
devices.torch_gc()
|
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
return res
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
return modules.ui.wrap_gradio_call(f)
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-09-11 08:31:16 +00:00
|
|
|
|
2022-09-08 12:19:36 +00:00
|
|
|
modules.scripts.load_scripts(os.path.join(script_path, "scripts"))
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
shared.sd_model = modules.sd_models.load_model()
|
|
|
|
shared.opts.onchange("sd_model_checkpoint", wrap_queued_call(lambda: modules.sd_models.reload_model_weights(shared.sd_model)))
|
2022-08-31 19:19:30 +00:00
|
|
|
|
2022-09-08 09:17:26 +00:00
|
|
|
|
|
|
|
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-08-31 19:19:30 +00:00
|
|
|
|
2022-10-01 17:31:58 +00:00
|
|
|
while 1:
|
|
|
|
|
|
|
|
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,
|
|
|
|
run_modelmerger=modules.extras.run_modelmerger
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
auth=[tuple(cred.split(':')) for cred in cmd_opts.gradio_auth.strip('"').split(',')] if cmd_opts.gradio_auth else None,
|
|
|
|
inbrowser=cmd_opts.autolaunch,
|
|
|
|
prevent_thread_lock=True
|
|
|
|
)
|
|
|
|
|
|
|
|
while 1:
|
|
|
|
time.sleep(0.5)
|
|
|
|
if getattr(demo,'do_restart',False):
|
|
|
|
time.sleep(0.5)
|
|
|
|
demo.close()
|
|
|
|
time.sleep(0.5)
|
|
|
|
break
|
|
|
|
|
2022-10-01 21:50:03 +00:00
|
|
|
print('Reloading Custom Scripts')
|
2022-10-01 17:31:58 +00:00
|
|
|
modules.scripts.reload_scripts(os.path.join(script_path, "scripts"))
|
2022-10-01 21:50:03 +00:00
|
|
|
print('Reloading modules: modules.ui')
|
|
|
|
importlib.reload(modules.ui)
|
2022-10-01 17:31:58 +00:00
|
|
|
print('Restarting Gradio')
|
2022-09-08 09:17:26 +00:00
|
|
|
|
2022-09-11 15:48:36 +00:00
|
|
|
|
2022-09-08 09:17:26 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
webui()
|