diff options
author | William Moorehouse <moorehousew@gmail.com> | 2022-09-25 19:22:12 -0400 |
---|---|---|
committer | William Moorehouse <moorehousew@gmail.com> | 2022-09-25 19:22:12 -0400 |
commit | 91643f651d2794349876b12abbf2449cdc4f30b6 (patch) | |
tree | bb91ef06b902b68486fca856ccd5deb2eb020ef6 /webui.py | |
parent | ca3e5519e8b6dc020c5e7ae508738afb5dc6f3ec (diff) |
Add support for checkpoint merging
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -85,7 +85,8 @@ def webui(): 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_pnginfo=modules.extras.run_pnginfo,
+ run_modelmerger=modules.extras.run_modelmerger
)
demo.launch(
|