File size: 213 Bytes
5a76ad4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Interface to explore images and labels.
"""

import gradio as gr


with gr.Blocks() as interface:
    with gr.Row():
        with gr.Column():
            gr.Image(
                label="Image",
            )