tonyassi's picture
Update app.py
4a35a20
raw
history blame
167 Bytes
import gradio as gr
def greet(img):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs=gr.Image(type='filepath'), outputs="text")
iface.launch()