m3t_gradio_demo / app.py
wancyuan
test
0d9dcf2
raw
history blame contribute delete
No virus
172 Bytes
import gradio as gr
def image_classifier(inp):
return {'cat': 0.3, 'dog': 0.7}
demo = gr.Interface(fn=image_classifier, inputs="image", outputs="label")
demo.launch()