AlexK-PL commited on
Commit
9e92141
1 Parent(s): c8797aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -181,9 +181,10 @@ with gr.Blocks(**AinaGradioTheme().get_kwargs()) as app:
181
 
182
  speaker_id = gr.Dropdown(label="Select a voice", choices=speakers_list, value=DEFAULT_SPEAKER_ID,
183
  interactive=True)
184
- model_chkpt = gr.Dropdown(label="Select a checkpoint", choices=model_files, value=DEFAULT_CHECKPOINT, interactive=True)
185
  dataset.change(fn=update_speaker_list, inputs=dataset, outputs=speaker_id)
186
 
 
 
187
  # model = gr.Dropdown(label="Select a model", choices=model_files, value=DEFAULT_MODEL_FILE_NAME)
188
  with gr.Row():
189
  clear_btn = gr.ClearButton(value='Clean', components=[input_])
 
181
 
182
  speaker_id = gr.Dropdown(label="Select a voice", choices=speakers_list, value=DEFAULT_SPEAKER_ID,
183
  interactive=True)
 
184
  dataset.change(fn=update_speaker_list, inputs=dataset, outputs=speaker_id)
185
 
186
+ model_chkpt = gr.Dropdown(label="Select a checkpoint", choices=model_files, value=DEFAULT_CHECKPOINT, interactive=True)
187
+
188
  # model = gr.Dropdown(label="Select a model", choices=model_files, value=DEFAULT_MODEL_FILE_NAME)
189
  with gr.Row():
190
  clear_btn = gr.ClearButton(value='Clean', components=[input_])