Spaces:
Runtime error
Runtime error
"""Interface for labeling concepts in images. | |
""" | |
import gradio as gr | |
with gr.Blocks() as interface: | |
with gr.Row(): | |
with gr.Column(): | |
gr.Image( | |
label="Image", | |
) | |
gr.Textbox( | |
label="Label", | |
) | |
gr.Button( | |
value="Submit", | |
) | |