Autoencoders / app.py
Bmo411's picture
Update app.py
e243c50 verified
raw
history blame
138 Bytes
import gradio as gr
def greet(imagen):
return imagen
demo = gr.Interface(fn=greet, inputs="image", outputs="image")
demo.launch()