Spaces:
Running
Running
adjust ui
Browse files
app.py
CHANGED
|
@@ -88,20 +88,19 @@ with gr.Blocks() as demo:
|
|
| 88 |
)
|
| 89 |
|
| 90 |
with gr.Row():
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
)
|
| 105 |
with gr.Row():
|
| 106 |
|
| 107 |
enroll_audio1 = gr.Audio(label="Upload your first enroll audio", type="filepath")
|
|
|
|
| 88 |
)
|
| 89 |
|
| 90 |
with gr.Row():
|
| 91 |
+
with gr.Column(scale=2):
|
| 92 |
+
input_audio = gr.Audio(label="Upload/record your audio", type="filepath")
|
| 93 |
+
with gr.Column(scale=1):
|
| 94 |
+
audio_type = gr.Radio(
|
| 95 |
+
choices=["clean", "mix"],
|
| 96 |
+
value="clean",
|
| 97 |
+
label="Input audio type?"
|
| 98 |
+
)
|
| 99 |
+
model_select = gr.Radio(
|
| 100 |
+
choices=["base_model", "iter_model"],
|
| 101 |
+
value="iter_model",
|
| 102 |
+
label="Select Model Type"
|
| 103 |
+
)
|
|
|
|
| 104 |
with gr.Row():
|
| 105 |
|
| 106 |
enroll_audio1 = gr.Audio(label="Upload your first enroll audio", type="filepath")
|