mohamedsaeed823's picture
Create app.py
b8b603e verified
raw
history blame
223 Bytes
import gradio as gr
from transformers import pipeline
ASRPipeline = pipeline(task="automatic-speech-recognition", model="dreahim/whisper-small-Egyptian_ASR_3train_2dev_v1")
gr.Interface.from_pipeline(ASRPipeline).launch()