JaesungHuh
test
8324298
raw
history blame
163 Bytes
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()