thu-pacman/PCMind-2.1-Kaiyuan-2B 已完整同步
This repository contains the complete pretraining dataset for PCMind-v2.1-Kaiyuan-2B, a leading fully open-source language model.
Overview
The dataset is organized into 5 training phases, with all phase datasets open-sourced in this repository. Our training methodology employs domain-specific mixing strategies across five primary domains:
- English: General English text
- Chinese: General Chinese text
- Code: Programming and code-related content
- Math: Mathematical reasoning and problems
- SFT: Supervised fine-tuning data
The phase-wise mixing ratios are as follows, where we primarily classify datasets into 5 domains: English, Chinese, Code, Math, and SFT data.
Phase Structure
The training process uses two distinct sampling strategies:
| Phase | Sampling Strategy | Data Format |
|---|---|---|
| Phase 1-2 | Uniform sampling | Single column: text |
| Phase 3-5 | Curriculum learning | Two columns: text (content), rank (sample order) |
Key distinctions:
- Phases 1-2: Uniform data distribution with random sampling
- Phases 3-5: Curriculum-based learning with ordered sample progression using the
rankfield
Each phase employs strategically designed mixing ratios across the five domains. The specific composition and ratios are detailed in our technical report.
Reproducing the Dataset
To construct these phase datasets from scratch, refer to the Kaiyuan-Spark repository, which provides comprehensive documentation on the preprocessing pipeline.
Citation
If you use this dataset, please cite our technical report:
@misc{luo2025pcmind21kaiyuan2btechnicalreport,
title={PCMind-2.1-Kaiyuan-2B Technical Report},
author={Kairong Luo and Zhenbo Sun and Xinyu Shi and Shengqi Chen and Bowen Yu and Yunyi Chen and Chenyi Dang and Hengtao Tao and Hui Wang and Fangming Liu and Kaifeng Lyu and Wenguang Chen},
year={2025},
eprint={2512.07612},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2512.07612},
}
Resources
- Model: thu-pacman/PCMind-2.1-Kaiyuan-2B
- Preprocessing Pipeline: Kaiyuan-Spark
- Technical Report: arXiv:2512.07612
License
All artifacts (including code, model weights
660 个文件
浏览文件数据集版权信息
本数据集的许可证为 Apache License 2.0。如有违反相关条款,请联系 WEHUB,我们将及时处理。 查看许可证
通过 WeHub CLI 下载当前数据集快照。下列命令会固定为当前页面展示的数据版本(如果页面提供版本)。文件字节由本机直连存储下载,浏览器不会签发或保存下载链接。
前置要求
需要 Node.js 18 及以上,以及 npm(或 npx)。
1. 安装 CLI
npm install -g wehub-cli@latest
2. 下载此数据集
wehub datasets download ds_ext_2139_d7d162bbf9 --revision 30fed1cf99d8a8add0d0335b58e7c0e34c791a17 --output ./ds_ext_2139_d7d162bbf9
若中断或部分失败,在同一目录重新执行同一命令即可续传。默认会校验 SHA-256。
免全局安装
npx --yes wehub-cli@latest datasets download ds_ext_2139_d7d162bbf9 --revision 30fed1cf99d8a8add0d0335b58e7c0e34c791a17 --output ./ds_ext_2139_d7d162bbf9
高级选项
以下为 wehub datasets download 已支持的参数示例:
强制重新下载,不复用已校验的本地文件
wehub datasets download ds_ext_2139_d7d162bbf9 --revision 30fed1cf99d8a8add0d0335b58e7c0e34c791a17 --output ./ds_ext_2139_d7d162bbf9 --overwrite
仅包含匹配路径
wehub datasets download ds_ext_2139_d7d162bbf9 --revision 30fed1cf99d8a8add0d0335b58e7c0e34c791a17 --output ./ds_ext_2139_d7d162bbf9 --include "*.jsonl"
排除匹配路径
wehub datasets download ds_ext_2139_d7d162bbf9 --revision 30fed1cf99d8a8add0d0335b58e7c0e34c791a17 --output ./ds_ext_2139_d7d162bbf9 --exclude "*.md"
提高并发下载数
wehub datasets download ds_ext_2139_d7d162bbf9 --revision 30fed1cf99d8a8add0d0335b58e7c0e34c791a17 --output ./ds_ext_2139_d7d162bbf9 --jobs 8
完整帮助:wehub datasets download --help