Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Tags:
License:
File size: 1,196 Bytes
b390035
 
dbcb955
 
 
 
 
 
 
 
 
 
b390035
dbcb955
 
 
 
 
 
 
 
fa36e5f
dbcb955
 
 
0c706e9
dbcb955
 
 
4078016
 
 
 
 
 
 
 
dbcb955
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
license: cc-by-nc-sa-4.0
language:
- en
annotations_creators:
- no-annotation
task_categories:
- text-generation
task_ids:
- language-modeling
size_categories:
- 10K<n<100K
---

This is the dataset for the paper Compression Represents Intelligence Linearly. 
We find that LLMs’ intelligence – reflected by benchmark scores – almost **linearly** correlates with their ability to compress external text corpora. We measure intelligence along three key abilities: knowledge and commonsense, coding, and mathematical reasoning, and provide corresponding datasets here respectively named cc, python, and arxiv_math.


### Load the data
```python
from datasets import load_dataset
dataset=load_dataset(r"hkust-nlp/llm-compression",name="python")

print(dataset['test'][0])
```
More details on compression evaluation are at our [github page](https://github.com/hkust-nlp/llm-compression-intelligence).

### Citation
```
@misc{huang2024compression,
      title={Compression Represents Intelligence Linearly}, 
      author={Yuzhen Huang and Jinghan Zhang and Zifei Shan and Junxian He},
      year={2024},
      eprint={2404.09937},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}
```