diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-11 12:54:34 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-11 12:54:34 +0000 |
commit | b0583be0884cd17dafb408fd79b52b2a0a972563 (patch) | |
tree | 007e8ab8095cb3a5b788d3d74311e436c528ff40 /modules/ui.py | |
parent | 873efeed49bb5197a42da18272115b326c5d68f3 (diff) | |
download | stable-diffusion-webui-gfx803-b0583be0884cd17dafb408fd79b52b2a0a972563.tar.gz stable-diffusion-webui-gfx803-b0583be0884cd17dafb408fd79b52b2a0a972563.tar.bz2 stable-diffusion-webui-gfx803-b0583be0884cd17dafb408fd79b52b2a0a972563.zip |
more renames
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index 42e5d866..ee333c3b 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1111,7 +1111,7 @@ def create_ui(wrap_gradio_gpu_call): )
create_hypernetwork.click(
- fn=modules.hypernetwork.ui.create_hypernetwork,
+ fn=modules.hypernetworks.ui.create_hypernetwork,
inputs=[
new_hypernetwork_name,
],
@@ -1164,7 +1164,7 @@ def create_ui(wrap_gradio_gpu_call): )
train_hypernetwork.click(
- fn=wrap_gradio_gpu_call(modules.hypernetwork.ui.train_hypernetwork, extra_outputs=[gr.update()]),
+ fn=wrap_gradio_gpu_call(modules.hypernetworks.ui.train_hypernetwork, extra_outputs=[gr.update()]),
_js="start_training_textual_inversion",
inputs=[
train_hypernetwork_name,
|