Xmaster6y's picture
base files
5a76ad4 unverified
raw
history blame
360 Bytes
"""
Main Gradio module.
"""
import gradio as gr
from src import (
explore_interface,
label_interface,
)
demo = gr.TabbedInterface(
[
explore_interface.interface,
label_interface.interface,
],
[
"Explore",
"Label",
],
title="Explore & Label Concepts",
analytics_enabled=True,
)
demo.launch()