miguem0r4 commited on
Commit
601fc85
·
1 Parent(s): 1b02ea5

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +14 -0
  2. requirements.txt +2 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
+
4
+ modelo = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-large-xlsr-53-spanish")
5
+
6
+ def transcribe(audio):
7
+ text = modelo(audio)["text"]
8
+ return text
9
+
10
+ gr.Interface(
11
+ fn=transcribe,
12
+ inputs=[gr.Audio(source="microphone", type="filepath")],
13
+ outputs=["textbox"]
14
+ ).launch()
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ torch
2
+ transformers