File size: 210 Bytes
b35dd02
 
 
3551f33
8f5986e
3551f33
8f5986e
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()