whitphx's picture
whitphx HF Staff
Create app.py
fad96b3
raw
history blame contribute delete
164 Bytes
import gradio as gr
def gallery(image):
return [image]
demo = gr.Interface(
fn=gallery,
inputs=gr.Image(),
outputs=gr.Gallery(),
)
demo.launch()