Metantropia commited on
Commit
13edc37
·
verified ·
1 Parent(s): 4ad2af5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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 audio_a_text(audio):
8
  text = trans(audio)["text"]
9
  return text
10
 
11
- def texto_a_sentimiento(text):
12
  return clasificador(text)[0]["label"]
13
 
14
  demo=gr.Blocks()
15
  with demo:
16
- gr.Markdown("Demo para la clase de Platzi")
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(text2sentimiento,inputs=texto,outputs=label)
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()