Spaces:
Running
Running
File size: 266 Bytes
fcdfd72 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
from gradio_image_prompter import ImagePrompter
demo = gr.Interface(
lambda prompts: (prompts["image"], prompts["points"]),
ImagePrompter(show_label=False),
[gr.Image(show_label=False), gr.Dataframe(label="Points")],
)
demo.launch()
|