Update demo.py
Browse files
demo.py
CHANGED
@@ -175,7 +175,7 @@ with gr.Blocks() as demo:
|
|
175 |
output_audio = gr.Audio(label="Output Audio",interactive=False)
|
176 |
run_btn.click(run_inference, [model_name, pitch, input_path, f0_method, save_as, index_rate, volume_normalization, consonant_protection], output_message)
|
177 |
|
178 |
-
with gr.Tab("Training")
|
179 |
model_name = gr.Textbox(label="Model Name (No spaces or symbols)")
|
180 |
dataset_folder = gr.Textbox(label="Dataset Folder", value="/content/dataset")
|
181 |
f0method = gr.Dropdown(["pm", "harvest", "rmvpe", "rmvpe_gpu"], label="F0 Method", value="rmvpe_gpu")
|
|
|
175 |
output_audio = gr.Audio(label="Output Audio",interactive=False)
|
176 |
run_btn.click(run_inference, [model_name, pitch, input_path, f0_method, save_as, index_rate, volume_normalization, consonant_protection], output_message)
|
177 |
|
178 |
+
with gr.Tab("Training"):
|
179 |
model_name = gr.Textbox(label="Model Name (No spaces or symbols)")
|
180 |
dataset_folder = gr.Textbox(label="Dataset Folder", value="/content/dataset")
|
181 |
f0method = gr.Dropdown(["pm", "harvest", "rmvpe", "rmvpe_gpu"], label="F0 Method", value="rmvpe_gpu")
|