Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,7 +19,7 @@ import re
|
|
| 19 |
import numpy as np
|
| 20 |
import wave
|
| 21 |
language_dict = tts_order_voice
|
| 22 |
-
|
| 23 |
|
| 24 |
try:
|
| 25 |
import spaces
|
|
@@ -234,7 +234,7 @@ def upload_model(index_file, pth_file, model_name):
|
|
| 234 |
MODELS.append({"model": pth_file, "index": index_file, "model_name": model_name})
|
| 235 |
return "Uploaded!"
|
| 236 |
|
| 237 |
-
with gr.Blocks(theme=
|
| 238 |
gr.Markdown("## Animalese RVC 🔶")
|
| 239 |
gr.Markdown("**this project is forked of Ilaria RVC!**")
|
| 240 |
with gr.Tab("Inference"):
|
|
|
|
| 19 |
import numpy as np
|
| 20 |
import wave
|
| 21 |
language_dict = tts_order_voice
|
| 22 |
+
from blaise import *
|
| 23 |
|
| 24 |
try:
|
| 25 |
import spaces
|
|
|
|
| 234 |
MODELS.append({"model": pth_file, "index": index_file, "model_name": model_name})
|
| 235 |
return "Uploaded!"
|
| 236 |
|
| 237 |
+
with gr.Blocks(theme=secret, title="Animalese RVC 🔶") as app:
|
| 238 |
gr.Markdown("## Animalese RVC 🔶")
|
| 239 |
gr.Markdown("**this project is forked of Ilaria RVC!**")
|
| 240 |
with gr.Tab("Inference"):
|