File size: 729 Bytes
36ff57a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21c3307
36ff57a
 
 
 
21c3307
36ff57a
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

demo = gr.Blocks()

with demo:
  gr.Markdown("Este es el segundo demo con Blocks")
  with gr.Tabs():
    with gr.TabItem("Transcribe audio en español"):
      with gr.Row():
        audio = gr.Audio(source="microphone", type="filepath")
        transcripcion = gr.Textbox()
      b1 = gr.Button("Transcribe porfa")
    
    with gr.TabItem("Análisis de sentimiento en español"):
      with gr.Row():
        texto = gr.Textbox()
        label = gr.Label()
      b2 = gr.Button("sentimiento porfa")
    
    


    b1.click(audio_a_text, inputs = audio, outputs = transcripcion)
    b2.click(texto_a_sentimiento, inputs = texto, outputs = label)
    #b3.click(clasifica_imagen, inputs = imagen, outputs=label1)


demo.launch()