Update app.py
Browse files
app.py
CHANGED
@@ -338,7 +338,7 @@ with gr.Blocks(title="RVC V2",theme=theme) as app:
|
|
338 |
with gr.Accordion("General Settings", open=False):
|
339 |
f0method0 = gr.Radio(
|
340 |
label="Method",
|
341 |
-
choices=["pm", "harvest", "crepe", "rmvpe"]
|
342 |
if config.dml == False
|
343 |
else ["pm", "harvest", "rmvpe"],
|
344 |
value="rmvpe",
|
@@ -436,6 +436,12 @@ with gr.Blocks(title="RVC V2",theme=theme) as app:
|
|
436 |
outputs=[model_browser],
|
437 |
fn=lambda model: download_from_url(model_library.models[model],model),
|
438 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
with gr.TabItem("Train"):
|
440 |
with gr.Row():
|
441 |
with gr.Column():
|
|
|
338 |
with gr.Accordion("General Settings", open=False):
|
339 |
f0method0 = gr.Radio(
|
340 |
label="Method",
|
341 |
+
choices=["pm", "harvest", "crepe", "rmvpe", "torchfcpe"]
|
342 |
if config.dml == False
|
343 |
else ["pm", "harvest", "rmvpe"],
|
344 |
value="rmvpe",
|
|
|
436 |
outputs=[model_browser],
|
437 |
fn=lambda model: download_from_url(model_library.models[model],model),
|
438 |
)
|
439 |
+
if colab:
|
440 |
+
with gr.TabItem("read this"):
|
441 |
+
gr.Markdown(f"This Spaces Using CPU dude\n may inference take long time\n")
|
442 |
+
else:
|
443 |
+
pass
|
444 |
+
|
445 |
with gr.TabItem("Train"):
|
446 |
with gr.Row():
|
447 |
with gr.Column():
|