File size: 220 Bytes
b35dd02
 
 
3551f33
 
 
d1aa7b7
1
2
3
4
5
6
7
import gradio as gr
from inference import *

iface = gr.Interface(fn=inference, 
                    inputs=gr.inputs.Audio(source="upload", type="filepath"), 
                    outputs="text")
iface.launch(share=True)