Sat2Density / app.py
venite-xjc
Add application file
845f263
raw
history blame
137 Bytes
import gradio as gr
def greet(img):
return img
iface = gr.Interface(fn=greet, inputs="image", outputs="image")
iface.launch()