picocreator
commited on
Commit
•
39cafd7
1
Parent(s):
91d8513
readme for repo
Browse files
README.md
CHANGED
@@ -8,3 +8,26 @@ configs:
|
|
8 |
- split: test
|
9 |
path: "DOES_NOT_EXIST_TEST.csv"
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
- split: test
|
9 |
path: "DOES_NOT_EXIST_TEST.csv"
|
10 |
---
|
11 |
+
|
12 |
+
# LM Eval data
|
13 |
+
|
14 |
+
This repository, represents a giant collection of various lm-eval results built using the [github scripts found here](https://github.com/RWKV/lm-evaluation-harness)
|
15 |
+
|
16 |
+
The goal at the point of creation, was to collect as much LM-eval results for as many relevent model for the RWKV paper. For analysis.
|
17 |
+
|
18 |
+
## Cloning the repo, without the jsonl dump
|
19 |
+
|
20 |
+
```
|
21 |
+
export GIT_LFS_SKIP_SMUDGE=1
|
22 |
+
git clone https://huggingface.co/datasets/rwkv-x-dev/lm-eval-data.git
|
23 |
+
```
|
24 |
+
|
25 |
+
## Cloning the repo, with the archives (large)
|
26 |
+
|
27 |
+
```
|
28 |
+
# Clone with archive files
|
29 |
+
git lfs clone https://huggingface.co/datasets/rwkv-x-dev/lm-eval-data.git
|
30 |
+
|
31 |
+
# Decompress all the archive files
|
32 |
+
./scripts/decompress-all-jsonl.sh
|
33 |
+
```
|