Spaces:
Sleeping
Sleeping
File size: 164 Bytes
fad96b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
def gallery(image):
return [image]
demo = gr.Interface(
fn=gallery,
inputs=gr.Image(),
outputs=gr.Gallery(),
)
demo.launch()
|