File size: 4,686 Bytes
7f5506e 80d548a 7f5506e a092a3a 7f5506e a092a3a 7f5506e a092a3a 7f5506e 80d548a 7f5506e 32de2c3 9fec70b 32de2c3 7f5506e 80d548a 7f5506e a092a3a 7f5506e 32de2c3 8c736cc 32de2c3 8c736cc 7f5506e 32de2c3 8c736cc 7f5506e |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
import gradio as gr
import time
from apscheduler.schedulers.background import BackgroundScheduler
import threading
import globals
from utils.io import initialize_models_providers_file, save_results, load_results, load_models_providers, get_results_table, load_models_providers_str
from utils.jobs import run_single_job, launch_jobs, update_job_statuses, relaunch_failed_jobs
from typing import List, Optional
def status_monitor() -> None:
"""Background thread to monitor job statuses."""
while True:
update_job_statuses()
time.sleep(240) # Check every 30 seconds
def daily_checkpoint() -> None:
"""Daily checkpoint - save current state."""
print("Daily checkpoint - saving current state")
save_results()
# Create Gradio interface
def create_app() -> gr.Blocks:
with gr.Blocks(title="Inference Provider Testing Dashboard") as demo:
gr.Markdown("# Inference Provider Testing Dashboard")
gr.Markdown("Launch and monitor evaluation jobs for multiple models and providers.")
# All action buttons in one row
with gr.Row():
init_btn = gr.Button("Fetch and Initialize Models/Providers", variant="secondary")
launch_btn = gr.Button("Launch All Jobs", variant="primary")
relaunch_failed_btn = gr.Button("Relaunch Failed", variant="stop")
refresh_btn = gr.Button("Refresh Results", variant="secondary")
output = gr.Textbox(label="Status", interactive=False)
# Accordion for viewing models/providers list
with gr.Accordion("Models/Providers Configuration", open=False):
models_providers_display = gr.Code(
label="Current Models and Providers",
value=load_models_providers_str(),
interactive=False,
)
with gr.Row():
with gr.Column():
gr.Markdown("## Job Results")
results_table = gr.Dataframe(
value=get_results_table(),
interactive=True,
show_search="search",
show_copy_button=True,
show_fullscreen_button=True,
wrap=True,
static_columns=list(range(7)),
datatype=["str", "str", "str", "str", "str", "str", "html", "str"],
elem_id="results_table"
)
# Event handlers
init_btn.click(
fn=initialize_models_providers_file,
outputs=output
)
init_btn.click(
fn=load_models_providers_str,
outputs=models_providers_display
)
launch_btn.click(
fn=launch_jobs,
outputs=output
)
relaunch_failed_btn.click(
fn=relaunch_failed_jobs,
outputs=output
)
refresh_btn.click(
fn=get_results_table,
outputs=results_table
)
# Handle dataframe cell selection for relaunch
def handle_table_select(evt: gr.SelectData):
"""Handle when a cell in the results table is clicked."""
print(f"[Relaunch] Cell selected - Row: {evt.index[0]}, Col: {evt.index[1]}, Value: {evt.value}")
# If we selected a "rerun" cell, we relaunch a job
if evt.index[1] == 7:
# Get the full row data from the dataframe
df = get_results_table()
row_data = df.data.iloc[evt.index[0]]
model = row_data['Model']
provider = row_data['Provider']
print(f"[Relaunch] Relaunching job - Model: {model}, Provider: {provider}")
run_single_job(model, provider, globals.TASKS)
# Then update the table
return get_results_table()
results_table.select(
fn=handle_table_select,
inputs=[],
outputs=results_table
)
return demo
if __name__ == "__main__":
# Load previous results
load_results()
print("Starting Inference Provider Testing Dashboard")
# Start status monitor thread
monitor_thread = threading.Thread(target=status_monitor, daemon=True)
monitor_thread.start()
print("Job status monitor started")
# Start APScheduler for daily checkpoint
scheduler = BackgroundScheduler()
scheduler.add_job(daily_checkpoint, 'cron', hour=0, minute=0) # Run at midnight
scheduler.start()
print("Daily checkpoint scheduler started (saves at 00:00)")
# Create and launch the Gradio interface
demo = create_app()
demo.launch(server_name="0.0.0.0", server_port=7860)
|