BorisovMaksim commited on
Commit
408258c
·
1 Parent(s): 8ad6e57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
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
- ["testing/wavs/p232_071.wav"],
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