WALT / app.py
3v324v23's picture
image
55717bd
raw
history blame
137 Bytes
import gradio as gr
def greet(image):
return image
iface = gr.Interface(fn=greet, inputs="image", outputs="image")
iface.launch()