immelstorun commited on
Commit
636f5bc
1 Parent(s): e893152

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -28,6 +28,6 @@ def predict_emotion(audio):
28
  # Loading gradio interface
29
  inputs = gr.inputs.Audio(label="Input Audio", type="file")
30
  outputs = "text"
31
- title = "Machine Learning Emotion Detection"
32
- description = "Gradio demo for Emotion Detection. To use it, simply upload your audio, or click one of the examples to load them. Read more at the links below."
33
  gr.Interface(predict_emotion, inputs, outputs, title=title, description=description).launch()
 
28
  # Loading gradio interface
29
  inputs = gr.inputs.Audio(label="Input Audio", type="file")
30
  outputs = "text"
31
+ title = "ML Speech Emotion Detection"
32
+ description = "Speechbrain powered wav2vec 2.0 pretrained model on IEMOCAP dataset using Gradio."
33
  gr.Interface(predict_emotion, inputs, outputs, title=title, description=description).launch()