Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,16 +4,16 @@ from transformers import pipeline
|
|
4 |
trans=pipeline("automatic-speech-recognition",model="facebook/wav2vec2-large-xlsr-53-spanish")
|
5 |
clasificador=pipeline("text-classification",model="pysentimiento/robertuito-sentiment-analysis")
|
6 |
|
7 |
-
def
|
8 |
text = trans(audio)["text"]
|
9 |
return text
|
10 |
|
11 |
-
def
|
12 |
return clasificador(text)[0]["label"]
|
13 |
|
14 |
demo=gr.Blocks()
|
15 |
with demo:
|
16 |
-
gr.Markdown("
|
17 |
audio=gr.Audio(sources="microphone",type="filepath")
|
18 |
texto=gr.Textbox()
|
19 |
b1=gr.Button("Transcribe")
|
@@ -21,6 +21,6 @@ with demo:
|
|
21 |
|
22 |
label=gr.Label()
|
23 |
b2=gr.Button("Clasifica el sentimiento")
|
24 |
-
b2.click(
|
25 |
|
26 |
demo.launch()
|
|
|
4 |
trans=pipeline("automatic-speech-recognition",model="facebook/wav2vec2-large-xlsr-53-spanish")
|
5 |
clasificador=pipeline("text-classification",model="pysentimiento/robertuito-sentiment-analysis")
|
6 |
|
7 |
+
def audio2text(audio):
|
8 |
text = trans(audio)["text"]
|
9 |
return text
|
10 |
|
11 |
+
def text2sentiment(text):
|
12 |
return clasificador(text)[0]["label"]
|
13 |
|
14 |
demo=gr.Blocks()
|
15 |
with demo:
|
16 |
+
gr.Markdown("Audio 2 Text 2 Sentiment")
|
17 |
audio=gr.Audio(sources="microphone",type="filepath")
|
18 |
texto=gr.Textbox()
|
19 |
b1=gr.Button("Transcribe")
|
|
|
21 |
|
22 |
label=gr.Label()
|
23 |
b2=gr.Button("Clasifica el sentimiento")
|
24 |
+
b2.click(text2sentiment,inputs=texto,outputs=label)
|
25 |
|
26 |
demo.launch()
|