mirror of
https://github.com/vladmandic/automatic
synced 2026-09-20 01:31:13 +02:00
feat(lora): default the select-mode ramp to 0
At 1.5 the ramp hands nearly every layer to the style network mid-generation, which on few-step models overwrites the forming subject before identity sets. Alpha 0 freezes the schedule into a static per-layer split: the subject keeps its layers for the whole generation and style keeps the layers where it is more salient. Nonzero values remain the scheduled handover toward the second network. - locale hints describe both regimes; the mode hint no longer implies the shift is always on
This commit is contained in:
@@ -711,7 +711,7 @@ def create_settings(cmd_opts):
|
||||
"lora_stack_sep": OptionInfo("<h2>Stacking options</h2>", "", gr.HTML),
|
||||
"lora_stack_mode": OptionInfo("sum", "LoRA stack mode", gr.Dropdown, {"choices": ["sum", "ties", "dare_ties", "dare_linear", "magnitude_prune", "klora", "estlora"]}),
|
||||
"lora_stack_density": OptionInfo(0.5, "LoRA stack density", gr.Slider, {"minimum": 0.05, "maximum": 1.0, "step": 0.05}),
|
||||
"lora_stack_alpha": OptionInfo(1.5, "LoRA stack ramp", gr.Slider, {"minimum": 0.0, "maximum": 3.0, "step": 0.1}),
|
||||
"lora_stack_alpha": OptionInfo(0.0, "LoRA stack ramp", gr.Slider, {"minimum": 0.0, "maximum": 3.0, "step": 0.1}),
|
||||
"lora_stack_discrepancy": OptionInfo(0.5, "LoRA stack discrepancy", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.05}),
|
||||
|
||||
"lora_meta_sep": OptionInfo("<h2>Metadata</h2>", "", gr.HTML),
|
||||
|
||||
Reference in New Issue
Block a user