inoki-giskard's picture
restructure and improve user interface with dropdown (#14)
9e4233f
raw
history blame
368 Bytes
# Start apps
# from pathlib import Path
import gradio as gr
from app_text_classification import get_demo as get_demo_text_classification
with gr.Blocks(theme=gr.themes.Soft(primary_hue="green")) as demo:
with gr.Tab("Text Classification"):
get_demo_text_classification()
with gr.Tab("Leaderboard - Text Classification"):
pass
demo.launch()