Spaces:
Sleeping
Sleeping
File size: 151 Bytes
ae94f9d | 1 2 3 4 5 6 7 | import gradio as gr
with gr.Blocks() as demo:
image = gr.Image()
gr.Examples(examples=["cats.jpg"], inputs=image)
demo.launch(ssr_mode=False)
|