minimal / app.py
fedosov's picture
feat: try input components
ed5ed95
raw
history blame contribute delete
244 Bytes
import gradio as gr
def greet(image):
return "Hello " + image + "!"
inputs = gr.inputs.Image(shape=(192, 192))
outputs = gr.outputs.Label(num_top_classes=3)
iface = gr.Interface(fn=greet, inputs=inputs, outputs=outputs)
iface.launch()