akshansh36 commited on
Commit
e5b6077
·
verified ·
1 Parent(s): 1879dae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -332,16 +332,16 @@ def get_gui(theme):
332
  outputs=[output_file, output_audio],
333
  )
334
 
335
- gr.Examples(
336
- examples=[
337
- ["./test.ogg", "./model.pth", "./model.index"],
338
- ["./example2/test2.ogg", "./example2/model.pth", "./example2/model.index"],
339
- ],
340
- fn=process_audio,
341
- inputs=[audio, files, model, indx],
342
- outputs=[output_file, output_audio],
343
- cache_examples=False,
344
- )
345
 
346
  return app
347
 
 
332
  outputs=[output_file, output_audio],
333
  )
334
 
335
+ # gr.Examples(
336
+ # examples=[
337
+ # ["./test.ogg", "./model.pth", "./model.index"],
338
+ # ["./example2/test2.ogg", "./example2/model.pth", "./example2/model.index"],
339
+ # ],
340
+ # fn=process_audio,
341
+ # inputs=[audio, files, model, indx],
342
+ # outputs=[output_file, output_audio],
343
+ # cache_examples=False,
344
+ # )
345
 
346
  return app
347