Spaces:
Running on Zero
Running on Zero
Commit ·
8a267b7
1
Parent(s): 160db86
Rename 'Number of Samples' to 'Generations'
Browse files
app.py
CHANGED
|
@@ -375,7 +375,7 @@ with gr.Blocks(title="TARO: Video-to-Audio Synthesis") as demo:
|
|
| 375 |
mode_input = gr.Radio(label="Sampling Mode", choices=["sde", "ode"], value="sde")
|
| 376 |
cf_dur_input = gr.Slider(label="Crossfade Duration (s)", minimum=0, maximum=8, value=2, step=0.1)
|
| 377 |
cf_db_input = gr.Textbox(label="Crossfade Boost (dB)", value="3")
|
| 378 |
-
samples_input = gr.Slider(label="
|
| 379 |
value=1, step=1)
|
| 380 |
run_btn = gr.Button("Generate", variant="primary")
|
| 381 |
|
|
|
|
| 375 |
mode_input = gr.Radio(label="Sampling Mode", choices=["sde", "ode"], value="sde")
|
| 376 |
cf_dur_input = gr.Slider(label="Crossfade Duration (s)", minimum=0, maximum=8, value=2, step=0.1)
|
| 377 |
cf_db_input = gr.Textbox(label="Crossfade Boost (dB)", value="3")
|
| 378 |
+
samples_input = gr.Slider(label="Generations", minimum=1, maximum=MAX_SLOTS,
|
| 379 |
value=1, step=1)
|
| 380 |
run_btn = gr.Button("Generate", variant="primary")
|
| 381 |
|