Merge pull request #471 from srndpty/feature/decimal-network-alpha

Change step of network_alpha from 1 to 0.1
This commit is contained in:
bmaltais 2023-03-28 11:57:59 -04:00 committed by GitHub
commit ea90c05841
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -807,11 +807,11 @@ def lora_tab(
interactive=True,
)
network_alpha = gr.Slider(
minimum=1,
minimum=0.1,
maximum=1024,
label='Network Alpha',
value=1,
step=1,
step=0.1,
interactive=True,
)
@ -826,10 +826,10 @@ def lora_tab(
label='Convolution Rank (Dimension)',
)
conv_alpha = gr.Slider(
minimum=1,
minimum=0.1,
maximum=512,
value=1,
step=1,
step=0.1,
label='Convolution Alpha',
)
# Show of hide LoCon conv settings depending on LoRA type selection