Spaces:
Sleeping
Sleeping
add app.py
Browse files
app.py
CHANGED
@@ -9,16 +9,6 @@ from tqdm import tqdm
|
|
9 |
MODELS = ["wrice/waveunet-vctk-48khz", "wrice/waveunet-vctk-24khz"]
|
10 |
|
11 |
|
12 |
-
def main():
|
13 |
-
"""Main."""
|
14 |
-
iface = gr.Interface(
|
15 |
-
fn=denoise,
|
16 |
-
inputs=[gr.Dropdown(choices=MODELS, default=MODELS[0]), "audio"],
|
17 |
-
outputs="audio",
|
18 |
-
)
|
19 |
-
iface.launch()
|
20 |
-
|
21 |
-
|
22 |
def denoise(model_name, inputs):
|
23 |
"""Denoise audio."""
|
24 |
model = WaveUNetModel.from_pretrained(model_name)
|
@@ -52,5 +42,9 @@ def denoise(model_name, inputs):
|
|
52 |
return model.config.sample_rate, denoised
|
53 |
|
54 |
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
9 |
MODELS = ["wrice/waveunet-vctk-48khz", "wrice/waveunet-vctk-24khz"]
|
10 |
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
def denoise(model_name, inputs):
|
13 |
"""Denoise audio."""
|
14 |
model = WaveUNetModel.from_pretrained(model_name)
|
|
|
42 |
return model.config.sample_rate, denoised
|
43 |
|
44 |
|
45 |
+
iface = gr.Interface(
|
46 |
+
fn=denoise,
|
47 |
+
inputs=[gr.Dropdown(choices=MODELS, default=MODELS[0]), "audio"],
|
48 |
+
outputs="audio",
|
49 |
+
)
|
50 |
+
iface.launch()
|