hktoen / app.py
reallynicejam's picture
Update app.py
a045bb1 verified
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()