Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/whisper
Mark0047
/
whisper1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6ec28b5
whisper1
/
app.py
Mark0047
Update app.py
6ec28b5
verified
10 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
import
gradio
as
gr
model = gr.load(
"models/superb/wav2vec2-base-superb-er"
)
def
transcribe
(
audio
):
return
model(audio)
gr.Interface(transcribe, gr.Audio(
type
=
"filepath"
), gr.Textbox()).launch()