File size: 163 Bytes
59b76ad
8324298
59b76ad
8324298
 
59b76ad
8324298
59b76ad
1
2
3
4
5
6
7
8
import gradio as gr
from model import ECAPA_gender

def greet(audio):
    print(audio)

demo = gr.Interface(fn=greet, inputs="audio", outputs="text")
demo.launch()