shezamunir commited on
Commit
4cfc3d6
Β·
verified Β·
1 Parent(s): 901e92c

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -6,7 +6,7 @@ st.set_page_config(page_title="ExpertLongBench Leaderboard", layout="wide")
6
 
7
  # ─── Load data ────────────────────────────────────────────────────────────────
8
  @st.cache_data
9
- def load_data(path="models.json"):
10
  df = pd.read_json(path, lines=True)
11
  score_cols = [f"T{i}" for i in range(1, 12)]
12
  df["Avg"] = df[score_cols].mean(axis=1).round(1)
 
6
 
7
  # ─── Load data ────────────────────────────────────────────────────────────────
8
  @st.cache_data
9
+ def load_data(path="src/models.json"):
10
  df = pd.read_json(path, lines=True)
11
  score_cols = [f"T{i}" for i in range(1, 12)]
12
  df["Avg"] = df[score_cols].mean(axis=1).round(1)