Abduhoshim commited on
Commit
9ea318f
·
1 Parent(s): 4dc9da5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -65,7 +65,8 @@ description = "This model can shows how speaker emotion changes over the speech"
65
 
66
  infr = gr.Interface(fn=predict,
67
  inputs=gr.Audio(type="filepath"),
68
- examples=['audio_samples/1.mp3','audio_samples/2.mp3','audio_samples/3.mp3','audio_samples/4.mp3']
 
69
  outputs=outputs,
70
  title=title,description=description,interpretation='default',)
71
  infr.launch()
 
65
 
66
  infr = gr.Interface(fn=predict,
67
  inputs=gr.Audio(type="filepath"),
68
+ examples=['audio_samples/1.mp3','audio_samples/2.mp3','audio_samples/3.mp3','audio_samples/4.mp3'],
69
+ cache_examples=True,
70
  outputs=outputs,
71
  title=title,description=description,interpretation='default',)
72
  infr.launch()