explore-label-concepts / src /label_interface.py
Xmaster6y's picture
base files
5a76ad4 unverified
raw
history blame
354 Bytes
"""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",
)