Spaces:
Running
on
CPU Upgrade
Any manner to retrieve the leaderboard results as csv file?
As the title says...
Yeah you can run it locally and then just add DATA_OVERALL.to_csv("overall.csv")
in the code at the very end to get a csv file of the overall english tab; You can do the same for the other tabs, too
I think we could also add a button to each tab to download it as csv
I think we could also add a button to each tab to download it as csv
Thanks a lot! I hope to download the leaderboards separately (for each capability, each language), any advice?
You can run this file locally with a handful of edits: https://huggingface.co/spaces/mteb/leaderboard/blob/main/app.py
In particular, you can add .to_csv("my_csv_file.csv")
to any dataframe of your interest to save its contents as a csv.
You can run this file locally with a handful of edits: https://huggingface.co/spaces/mteb/leaderboard/blob/main/app.py
In particular, you can add.to_csv("my_csv_file.csv")
to any dataframe of your interest to save its contents as a csv.
Thanks so much for your quick reply. @tomaarsen @Muennighoff Just one question. I found the script to be very long. I am not sure where I should look for the table download customization. Anywhere that I should pay special attention to?