Gameel/ASR
0
1import gradio as gr2from transformers import pipeline3 4pipe = pipeline(task="automatic-speech-recognition", 5 model="facebook/s2t-medium-librispeech-asr")6gr.Interface.from_pipeline(pipe,7 title="Automatic Speech Recognition (ASR)",8 description="Using pipeline with Facebook S2T for ASR.",9 # examples=['data/ljspeech.wav',],10 ).launch(inbrowser=True)