GenreClassifier / app.py
Enutrof's picture
Added initial files
9cc6970
raw
history blame
177 Bytes
import gradio as gr
from inference import *
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=inference, inputs="audio", outputs="text")
iface.launch()