Skip to content

Commit

Permalink
[WIP] Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ljvmiranda921 committed Oct 9, 2024
1 parent 390bc04 commit e60db3d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions analysis/_plot_leaderboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@ def main():
category="Reasoning",
)

dfs = {
"chat": chat_leaderboard_df,
"chat-hard": chat_hard_leaderboard_df,
"safety": safety_leaderboard_df,
"reasoning": reasoning_leaderboard_df,
}

for k, v in dfs.items():
v.to_csv(f"{k}.csv")

# Save per model type
model_types = leaderboard_df["Type"].unique().tolist()
for model_type in model_types:
Expand Down

0 comments on commit e60db3d

Please sign in to comment.