Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MasalaDosa1337
/
RGMC
like
0
Sleeping
App
Files
Files
Community
main
RGMC
/
app.py
NikitaSrivatsan
Fixed output text box
866a431
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
197 Bytes
import
gradio
as
gr
from
infer
import
infer
demo = gr.Interface(fn=infer,
inputs=gr.Audio(sources=
'upload'
,
type
=
'filepath'
),
outputs=
'text'
)
demo.launch()