tonyassi's picture
Create app.py
183ba69
raw history blame
No virus
166 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()