Add dataset card, paper link and GitHub reference
Browse filesHi! I'm Niels from the community science team at Hugging Face. I'm opening this PR to improve the dataset card for this repository.
I've added YAML metadata for the task category, language, and license, and updated the README to link to your recent paper [CSRP: Chain-of-Thought Reasoning for Chinese Text Correction via Reinforcement Learning with Efficiency-Aware Rewards](https://huggingface.co/papers/2606.00020) and your GitHub repository. I've also added a sample usage section for the data augmentation tool mentioned in your GitHub README and organized the dataset statistics into a table for better readability.
README.md
CHANGED
|
@@ -1,4 +1,64 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- zh
|
| 7 |
+
tags:
|
| 8 |
+
- chinese
|
| 9 |
+
- spelling-correction
|
| 10 |
+
- csc
|
| 11 |
+
- text-correction
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# Chinese Spelling Correction (CSC) Dataset
|
| 15 |
+
|
| 16 |
+
This repository contains various Chinese Spelling Correction (CSC) datasets as presented in the paper [CSRP: Chain-of-Thought Reasoning for Chinese Text Correction via Reinforcement Learning with Efficiency-Aware Rewards](https://huggingface.co/papers/2606.00020).
|
| 17 |
+
|
| 18 |
+
These datasets are part of the [ChineseErrorCorrector](https://github.com/TW-NLP/ChineseErrorCorrector) project, a comprehensive platform for Chinese text correction tasks.
|
| 19 |
+
|
| 20 |
+
## Dataset Statistics
|
| 21 |
+
|
| 22 |
+
The collection includes the following subsets:
|
| 23 |
+
|
| 24 |
+
| Subset | Count |
|
| 25 |
+
| :--- | :--- |
|
| 26 |
+
| **W271K** | 279,816 |
|
| 27 |
+
| **Medical** | 39,303 |
|
| 28 |
+
| **Lemon** | 22,259 |
|
| 29 |
+
| **ECSpell** | 6,688 |
|
| 30 |
+
| **CSCD** | 35,001 |
|
| 31 |
+
|
| 32 |
+
## Resources
|
| 33 |
+
|
| 34 |
+
- **GitHub Repository:** [TW-NLP/ChineseErrorCorrector](https://github.com/TW-NLP/ChineseErrorCorrector)
|
| 35 |
+
- **Paper:** [CSRP: Chain-of-Thought Reasoning for Chinese Text Correction via Reinforcement Learning with Efficiency-Aware Rewards](https://huggingface.co/papers/2606.00020)
|
| 36 |
+
|
| 37 |
+
## Sample Usage
|
| 38 |
+
|
| 39 |
+
The authors provide a tool for grammatical error augmentation via the `ChineseErrorCorrector` Python package:
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
from ChineseErrorCorrector.utils.dat import GrammarErrorDat
|
| 43 |
+
|
| 44 |
+
dat = GrammarErrorDat()
|
| 45 |
+
print(dat.lack_word("小明住在北京")) # 缺字漏字
|
| 46 |
+
print(dat.error_word("小明住在北京")) # 错别字
|
| 47 |
+
print(dat.lack_punctuation("小明住在北京")) # 缺少标点
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
## Citation
|
| 51 |
+
|
| 52 |
+
If you use this dataset or the associated tools, please cite:
|
| 53 |
+
|
| 54 |
+
```bibtex
|
| 55 |
+
@misc{tian2026csrpchainofthoughtreasoningchinese,
|
| 56 |
+
title={CSRP: Chain-of-Thought Reasoning for Chinese Text Correction via Reinforcement Learning with Efficiency-Aware Rewards},
|
| 57 |
+
author={Wei Tian and Yuhao Zhou and Man Lan},
|
| 58 |
+
year={2026},
|
| 59 |
+
eprint={2606.00020},
|
| 60 |
+
archivePrefix={arXiv},
|
| 61 |
+
primaryClass={cs.CL},
|
| 62 |
+
url={https://arxiv.org/abs/2606.00020},
|
| 63 |
+
}
|
| 64 |
+
```
|