Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,19 @@ import pandas as pd
|
|
4 |
from apscheduler.schedulers.background import BackgroundScheduler
|
5 |
from huggingface_hub import snapshot_download
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
from src.about import (
|
8 |
CITATION_BUTTON_LABEL,
|
9 |
CITATION_BUTTON_TEXT,
|
|
|
4 |
from apscheduler.schedulers.background import BackgroundScheduler
|
5 |
from huggingface_hub import snapshot_download
|
6 |
|
7 |
+
|
8 |
+
LEADERBOARD_DF = get_leaderboard_df(EVAL_RESULTS_PATH, EVAL_REQUESTS_PATH, COLS, BENCHMARK_COLS)
|
9 |
+
|
10 |
+
# ่ฟฝๅ : ๅๅใ่กจ็คบ
|
11 |
+
print(LEADERBOARD_DF.columns)
|
12 |
+
|
13 |
+
# ๆขๅญใฎใณใผใ
|
14 |
+
(
|
15 |
+
finished_eval_queue_df,
|
16 |
+
running_eval_queue_df,
|
17 |
+
pending_eval_queue_df,
|
18 |
+
) = get_evaluation_queue_df(EVAL_REQUESTS_PATH, EVAL_COLS)
|
19 |
+
|
20 |
from src.about import (
|
21 |
CITATION_BUTTON_LABEL,
|
22 |
CITATION_BUTTON_TEXT,
|