Change step of network_alpha from 1 to 0.1

This commit is contained in:
Masaki Takano 2023-03-28 21:11:17 +09:00
parent 14bd126391
commit 5c4c1d6f17

View File

@ -796,11 +796,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,
)