Sakalti commited on
Commit
08763bd
ยท
verified ยท
1 Parent(s): 72ae346

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
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,