File size: 197 Bytes
2f61ee1
48ac659
2f61ee1
48ac659
3d5b800
df76cad
2f61ee1
1
2
3
4
5
6
7
8
import gradio as gr
from infer import infer

demo = gr.Interface(fn=infer,
                    inputs=gr.Audio(sources='upload', type='filepath'),
                    outputs='text')
demo.launch()