Spaces:
Running
Running
File size: 782 Bytes
01c4e21 9e4233f f04482d 9e4233f be473e6 f04482d 01942d8 be473e6 |
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 |
import gradio as gr
import atexit
from app_text_classification import get_demo as get_demo_text_classification
from app_leaderboard import get_demo as get_demo_leaderboard
from run_jobs import start_process_run_job, stop_thread
import threading
if threading.current_thread() is not threading.main_thread():
t = threading.current_thread()
try:
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"):
get_demo_leaderboard()
start_process_run_job()
demo.queue(max_size=100)
demo.launch(share=False)
atexit.register(stop_thread)
except Exception:
print("stop background thread")
stop_thread()
|