Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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_])
|