Spaces:
Runtime error
Runtime error
File size: 354 Bytes
5a76ad4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""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",
)
|