Spaces:
Runtime error
Runtime error
Commit
·
408258c
1
Parent(s):
8ad6e57
Update app.py
Browse files
app.py
CHANGED
@@ -51,10 +51,8 @@ def run_app(model_filename, config_filename):
|
|
51 |
)
|
52 |
gr.Parallel(interface_demucs, interface_spectral_gating,
|
53 |
title="Denoising",
|
54 |
-
examples=[
|
55 |
-
|
56 |
-
["testing/wavs/p232_284.wav"],
|
57 |
-
]).launch(server_name='0.0.0.0',
|
58 |
server_port=7860)
|
59 |
|
60 |
|
|
|
51 |
)
|
52 |
gr.Parallel(interface_demucs, interface_spectral_gating,
|
53 |
title="Denoising",
|
54 |
+
examples=[[path] for path in Path("testing/wavs/").glob("*.wav")]
|
55 |
+
).launch(server_name='0.0.0.0',
|
|
|
|
|
56 |
server_port=7860)
|
57 |
|
58 |
|