which-flower / app.py
rdkulkarni's picture
Update app.py
7eb04d1
raw
history blame
175 Bytes
import gradio as gr
import predict as predict
iface = gr.Interface(fn=predict, inputs=gr.inputs.Image(type='pil'), outputs=gr.outputs.Label(num_top_classes=3))
iface.launch()