Update README.md
Browse files
README.md
CHANGED
@@ -77,6 +77,29 @@ from datasets import load_dataset
|
|
77 |
dataset = load_dataset("BAAI/CCI3-Data")
|
78 |
```
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
## User Agreement
|
81 |
|
82 |
Users need to comply with the usage agreement of the CCI 3.0 dataset. You can view the agreement by clicking on the following link: ([View Usage Agreement](https://data.baai.ac.cn/resources/agreement/cci_usage_aggrement.pdf)).
|
|
|
77 |
dataset = load_dataset("BAAI/CCI3-Data")
|
78 |
```
|
79 |
|
80 |
+
### Evaluation
|
81 |
+
|
82 |
+
#### Setup
|
83 |
+
Due to the mixed Chinese and English datasets, we chose Qwen2-0.5B model for datasets evaluation, each experiment with 100B tokens training.
|
84 |
+
|
85 |
+
We follow the same evaluation setup for all models using [FineWeb setup](https://github.com/huggingface/cosmopedia/tree/main/evaluation) with [lighteval](https://github.com/huggingface/lighteval) library.
|
86 |
+
You can checkout the [evaluation script](./lighteval_tasks_v2.py) here.
|
87 |
+
|
88 |
+
#### Results
|
89 |
+
We conducted two types of experiments:
|
90 |
+
1. Mixed Dataset Experiment: The ratio of English, code, and Chinese is 60% : 10% : 30%.
|
91 |
+
2. Chinese Dataset Experiment: The Chinese ratio is 100%.
|
92 |
+
|
93 |
+
For English datasets, we uniformly used [FineWeb-edu](https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu/tree/main/sample/100BT); for code data, we used [StarCoder](https://huggingface.co/bigcode/starcoder); for Chinese datasets, we selected [wanjuan-v1](https://github.com/opendatalab/WanJuan1.0), [skypile](https://huggingface.co/datasets/Skywork/SkyPile-150B), and [cci3.0](https://huggingface.co/datasets/BAAI/CCI3-Data).
|
94 |
+
|
95 |
+
For Mixed Dataset Experiment all evaluation metrics are averaged.
|
96 |
+
![Mixed Dataset Experiment](./datasets_mix_metrics.png)
|
97 |
+
|
98 |
+
For Chinese Dataset Experiment only chinese evaluation metrics are averaged.
|
99 |
+
![Chinese Dataset Experiment](./chinese_dataset_metrics.png)
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
## User Agreement
|
104 |
|
105 |
Users need to comply with the usage agreement of the CCI 3.0 dataset. You can view the agreement by clicking on the following link: ([View Usage Agreement](https://data.baai.ac.cn/resources/agreement/cci_usage_aggrement.pdf)).
|