Update tagging explanation in readme
Browse filesMake it more clear that the main branch contains the most up to date
version, give an example of how to load a specific tag, and list the
most recent 4 tags.
README.md
CHANGED
@@ -13,11 +13,40 @@ tags:
|
|
13 |
|
14 |
# LMSYS Chatbot Arena ELO Scores
|
15 |
|
16 |
-
This dataset is a datasets
|
17 |
updated daily from the leaderboard API at
|
18 |
https://huggingface.co/spaces/lmarena-ai/chatbot-arena-leaderboard.
|
19 |
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
## Dataset Structure
|
23 |
|
@@ -52,4 +81,4 @@ To cite the ELO leaderboard, please use the original citation:
|
|
52 |
```
|
53 |
|
54 |
If you want to cite this repo or specific commits for reproducibility, please
|
55 |
-
include a link to this repo and an exact commit hash.
|
|
|
13 |
|
14 |
# LMSYS Chatbot Arena ELO Scores
|
15 |
|
16 |
+
This dataset is a `datasets`-friendly version of Chatbot Arena ELO scores,
|
17 |
updated daily from the leaderboard API at
|
18 |
https://huggingface.co/spaces/lmarena-ai/chatbot-arena-leaderboard.
|
19 |
|
20 |
+
**Updated: 20241024**
|
21 |
+
|
22 |
+
## Loading Data
|
23 |
+
|
24 |
+
```python
|
25 |
+
from datasets import load_dataset
|
26 |
+
|
27 |
+
dataset = load_dataset("mathewhe/chatbot-arena-elo", split="train")
|
28 |
+
```
|
29 |
+
|
30 |
+
The main branch of this dataset will always be updated to the latest ELO and
|
31 |
+
leaderboard version. If you need a fixed dataset that does not change, please
|
32 |
+
specify a date tag when loading the dataset:
|
33 |
+
|
34 |
+
```python
|
35 |
+
from datsasets import load_dataset
|
36 |
+
|
37 |
+
# Load the leaderboard from October 24, 2024
|
38 |
+
dataset = load_dataset("mathewhe/chatbot-arena-elo", split="train", revision="20241024")
|
39 |
+
```
|
40 |
+
|
41 |
+
Tags are only created when the leaderboard is updated. See below for a list of
|
42 |
+
recent tags.
|
43 |
+
|
44 |
+
```
|
45 |
+
20241024
|
46 |
+
20241023
|
47 |
+
20241020
|
48 |
+
20241014
|
49 |
+
```
|
50 |
|
51 |
## Dataset Structure
|
52 |
|
|
|
81 |
```
|
82 |
|
83 |
If you want to cite this repo or specific commits for reproducibility, please
|
84 |
+
include a link to this repo and an exact commit hash or tag.
|