JackIsNotInTheBox commited on
Commit
8a267b7
·
1 Parent(s): 160db86

Rename 'Number of Samples' to 'Generations'

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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="Number of Samples", minimum=1, maximum=MAX_SLOTS,
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