From 383abc0276ac0be8fb72a9d4e220a99127971e8f Mon Sep 17 00:00:00 2001 From: Kohya S Date: Tue, 23 May 2023 21:23:40 +0900 Subject: [PATCH 1/2] add relase to weight slider, refs #183 #190 --- scripts/additional_networks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/additional_networks.py b/scripts/additional_networks.py index f89fc5b..cba1dfc 100644 --- a/scripts/additional_networks.py +++ b/scripts/additional_networks.py @@ -101,6 +101,7 @@ def ui(self, is_img2img): ) weight.change(lambda w: (w, w), inputs=[weight], outputs=[weight_unet, weight_tenc]) + weight.release(lambda w: (w, w), inputs=[weight], outputs=[weight_unet, weight_tenc]) paste_params.append({"module": module, "model": model}) ctrls.extend((module, model, weight_unet, weight_tenc)) From 6a2fbaee402742852fb6a59f4a728c693dcbf5e1 Mon Sep 17 00:00:00 2001 From: Kohya S Date: Tue, 23 May 2023 21:27:58 +0900 Subject: [PATCH 2/2] update readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5546b83..c45be3f 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,10 @@ Composable LoRA はサブプロンプトごとに LoRA の適用有無を切り ## Change History +- 23 May 2023, 2023/5/23 + - Fix an issue where the value of the `Weight` slider is not applied correctly. + - `Weight`のスライダーの値が正しく反映されない場合がある不具合への対応を行いました。 + - 8 May 2023, 2023/5/8 - Fix an issue where the models are not loaded correctly in the `Additional Networks` tab. - Fix an issue where `None` cannot be selected as a model in X/Y/Z plot.