File size: 433 Bytes
5a76ad4
 
 
 
 
 
 
 
405b0bd
 
5a76ad4
 
 
 
 
 
405b0bd
 
5a76ad4
 
 
405b0bd
 
5a76ad4
 
 
 
1f64946
5a76ad4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
Main Gradio module.
"""

import gradio as gr

from src import (
    label_interface,
    sample_interface,
    vote_interface,
)


demo = gr.TabbedInterface(
    [
        label_interface.interface,
        sample_interface.interface,
        vote_interface.interface,
    ],
    [
        "Label",
        "Sample",
        "Vote",
    ],
    title="Explore & Label Concepts",
    analytics_enabled=True,
)
      
demo.launch()