Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
reallynicejam
/
hktoen
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a045bb1
hktoen
/
app.py
reallynicejam
Update app.py
a045bb1
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
187 Bytes
import
gradio
as
gr
model = gr.load(
"models/facebook/xm_transformer_s2ut_hk-en"
)
demo = gr.Interface(
gr.Audio(sources=[
"microphone"
]),
outputs=
"audio"
,
model
)
demo.launch()