File size: 356 Bytes
8bd3e03 1c54612 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from transformers import pipeline
import gradio as gr
modelo = pipeline("automatic-speech-recognition", "facebook/wav2vec2-large-xlsr-53-spanish")
def transcribe(audio):
text = modelo(audio)["text"]
return text
# Crear la interfaz de Gradio
gr.Interface(
fn=transcribe,
inputs=gr.Audio(type="filepath"),
outputs="text"
).launch() |