Skip to content

Commit

Permalink
Merge pull request #2915 from b-fission/flux-mergelora-max-at2
Browse files Browse the repository at this point in the history
Increase maximum Flux lora merge strength to 2
  • Loading branch information
bmaltais authored Oct 25, 2024
2 parents 03e9742 + d29a546 commit 64fd4b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kohya_gui/flux_merge_lora_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def list_save_to(path):
ratio_a = gr.Slider(
label="Model A merge ratio (eg: 0.5 mean 50%)",
minimum=0,
maximum=1,
maximum=2,
step=0.01,
value=0.0,
interactive=True,
Expand All @@ -206,7 +206,7 @@ def list_save_to(path):
ratio_b = gr.Slider(
label="Model B merge ratio (eg: 0.5 mean 50%)",
minimum=0,
maximum=1,
maximum=2,
step=0.01,
value=0.0,
interactive=True,
Expand Down Expand Up @@ -281,7 +281,7 @@ def list_save_to(path):
ratio_c = gr.Slider(
label="Model C merge ratio (eg: 0.5 mean 50%)",
minimum=0,
maximum=1,
maximum=2,
step=0.01,
value=0.0,
interactive=True,
Expand All @@ -290,7 +290,7 @@ def list_save_to(path):
ratio_d = gr.Slider(
label="Model D merge ratio (eg: 0.5 mean 50%)",
minimum=0,
maximum=1,
maximum=2,
step=0.01,
value=0.0,
interactive=True,
Expand Down

0 comments on commit 64fd4b2

Please sign in to comment.