Pendrokar commited on
Commit
b1e470d
β€’
1 Parent(s): 3c34d6c

radio defaults

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -161,11 +161,13 @@ input_textbox = gr.Textbox(
161
  pacing_slider = gr.Slider(0.5, 2.0, value=1.0, step=0.1, label="Pacing")
162
  voice_radio = gr.Radio(
163
  voice_models,
 
164
  label="Voice",
165
  info="NVIDIA HIFI CC-BY-4.0 xVAPitch/v3 xVASynth model"
166
  )
167
  language_radio = gr.Radio(
168
  languages,
 
169
  label="Language",
170
  info="Will have an English accent as the models were English. Tested only by a native Briton."
171
  )
 
161
  pacing_slider = gr.Slider(0.5, 2.0, value=1.0, step=0.1, label="Pacing")
162
  voice_radio = gr.Radio(
163
  voice_models,
164
+ value=voice_models[0],
165
  label="Voice",
166
  info="NVIDIA HIFI CC-BY-4.0 xVAPitch/v3 xVASynth model"
167
  )
168
  language_radio = gr.Radio(
169
  languages,
170
+ value="en",
171
  label="Language",
172
  info="Will have an English accent as the models were English. Tested only by a native Briton."
173
  )