image-example / app.py
hysts's picture
hysts HF Staff
Add files
ae94f9d
import gradio as gr
with gr.Blocks() as demo:
image = gr.Image()
gr.Examples(examples=["cats.jpg"], inputs=image)
demo.launch(ssr_mode=False)