Spaces:
Runtime error
Runtime error
Commit
·
3c26a7d
1
Parent(s):
058508d
edit file upload
Browse files
app.py
CHANGED
@@ -29,10 +29,10 @@ def inference(path):
|
|
29 |
outputs = {config.id2label[i]: float(round(score,2)) for i, score in enumerate(scores)}
|
30 |
return outputs
|
31 |
|
32 |
-
inputs = gr.inputs.Audio(label="Input Audio", type="filepath", source="
|
33 |
outputs = gr.outputs.Label(type="confidences", label = "Output Scores")
|
34 |
title = "Wav2Vec2 Speech Emotion Recognition"
|
35 |
-
description = "This is a demo of the Wav2Vec2 Speech Emotion Recognition model.
|
36 |
examples = ['data/test_audio.wav', 'data/test_audio_2.wav']
|
37 |
article = "<a href = 'https://github.com/m3hrdadfi/soxan'> Wav2Vec2 Speech Classification Github Repository"
|
38 |
|
|
|
29 |
outputs = {config.id2label[i]: float(round(score,2)) for i, score in enumerate(scores)}
|
30 |
return outputs
|
31 |
|
32 |
+
inputs = gr.inputs.Audio(label="Input Audio", type="filepath", source="upload")
|
33 |
outputs = gr.outputs.Label(type="confidences", label = "Output Scores")
|
34 |
title = "Wav2Vec2 Speech Emotion Recognition"
|
35 |
+
description = "This is a demo of the Wav2Vec2 Speech Emotion Recognition model. Upload a .wav file and the top emotions predicted will be displayed."
|
36 |
examples = ['data/test_audio.wav', 'data/test_audio_2.wav']
|
37 |
article = "<a href = 'https://github.com/m3hrdadfi/soxan'> Wav2Vec2 Speech Classification Github Repository"
|
38 |
|