Update app.py
Browse files
app.py
CHANGED
|
@@ -44,10 +44,10 @@ def get_training_info(audio_file, pretrain):
|
|
| 44 |
with gr.Blocks(theme=gr.themes.Base(primary_hue="sky", secondary_hue="blue"), title="RVC TRAINING HELPER") as demo:
|
| 45 |
with gr.Tab("Main Settings"):
|
| 46 |
audio_input = gr.Audio(type="filepath", label="Your Audio here")
|
| 47 |
-
pretraina = gr.Dropdown(choices=["OV2","Normal","TITAN","Snowie V3","RIN E3","SnowieV3 X RIN_E3","ITALIA"])
|
| 48 |
start_button = gr.Button("Start!")
|
| 49 |
output_text = gr.Textbox(scale=3, label="Your Output here")
|
| 50 |
-
start_button.click(get_training_info, inputs=[audio_input
|
| 51 |
|
| 52 |
with gr.Tab("Credits"):
|
| 53 |
gr.Markdown("### This code originally by [TheStinger](https://huggingface.co/TheStinger)<br>Edited by Blane187")
|
|
|
|
| 44 |
with gr.Blocks(theme=gr.themes.Base(primary_hue="sky", secondary_hue="blue"), title="RVC TRAINING HELPER") as demo:
|
| 45 |
with gr.Tab("Main Settings"):
|
| 46 |
audio_input = gr.Audio(type="filepath", label="Your Audio here")
|
| 47 |
+
#pretraina = gr.Dropdown(choices=["OV2","Normal","TITAN","Snowie V3","RIN E3","SnowieV3 X RIN_E3","ITALIA",])
|
| 48 |
start_button = gr.Button("Start!")
|
| 49 |
output_text = gr.Textbox(scale=3, label="Your Output here")
|
| 50 |
+
start_button.click(get_training_info, inputs=[audio_input], outputs=[output_text])
|
| 51 |
|
| 52 |
with gr.Tab("Credits"):
|
| 53 |
gr.Markdown("### This code originally by [TheStinger](https://huggingface.co/TheStinger)<br>Edited by Blane187")
|