Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,14 @@ from easyfuncs import download_from_url, CachedModels
|
|
4 |
os.makedirs("dataset",exist_ok=True)
|
5 |
model_library = CachedModels()
|
6 |
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
with gr.Row():
|
9 |
|
10 |
gr.HTML("<img src='https://huggingface.co/spaces/Blane187/RVC_HF_V2/resolve/main/a.png' alt='image'>")
|
|
|
4 |
os.makedirs("dataset",exist_ok=True)
|
5 |
model_library = CachedModels()
|
6 |
|
7 |
+
theme = gr.themes.Default().set(
|
8 |
+
button_primary_background_fill="#000000",
|
9 |
+
button_primary_background_fill_hover="#FF0000",
|
10 |
+
button_primary_border="#FF0000",
|
11 |
+
)
|
12 |
+
|
13 |
+
|
14 |
+
with gr.Blocks(title="🔊",theme=theme) as app:
|
15 |
with gr.Row():
|
16 |
|
17 |
gr.HTML("<img src='https://huggingface.co/spaces/Blane187/RVC_HF_V2/resolve/main/a.png' alt='image'>")
|