Update model card: correct pipeline tag, add library name and paper/code links
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,14 +1,18 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
language:
|
| 4 |
- zh
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
---
|
| 9 |
|
| 10 |
# 中文检错前筛模型:背景、训练、改造与结果摘要
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
本文档概括本仓库在「纠错前筛」方向上的**字级**检测目标、数据与上游来源、训练与改造过程,以及阶段性评测与性能结论。操作级命令仍以 `UPLOAD_AND_TRAIN.txt`、`CHAR_PIPELINE.txt` 为准。
|
| 13 |
|
| 14 |
---
|
|
@@ -177,3 +181,15 @@ python download_base_model.py --model_id hfl/chinese-electra-180g-base-discrimin
|
|
| 177 |
## 8. 引用与致谢
|
| 178 |
|
| 179 |
方法与数据谱系主要参考 **TW-NLP** 的 **ChineseErrorCorrector** 项目及其公开的 Hugging Face 数据集与模型卡片;预训练骨干为 **哈工大 HFL** 发布的 **Chinese ELECTRA**(discriminator)。具体论文与引用格式见上游与 [ELECTRA 模型页](https://huggingface.co/hfl/chinese-electra-180g-base-discriminator) 相关说明。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: hfl/chinese-electra-180g-base-discriminator
|
| 3 |
language:
|
| 4 |
- zh
|
| 5 |
+
license: apache-2.0
|
| 6 |
+
pipeline_tag: token-classification
|
| 7 |
+
library_name: transformers
|
| 8 |
---
|
| 9 |
|
| 10 |
# 中文检错前筛模型:背景、训练、改造与结果摘要
|
| 11 |
|
| 12 |
+
This model is a character-level Chinese error detector 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).
|
| 13 |
+
|
| 14 |
+
The official code is available in the [ChineseErrorCorrector](https://github.com/TW-NLP/ChineseErrorCorrector) repository.
|
| 15 |
+
|
| 16 |
本文档概括本仓库在「纠错前筛」方向上的**字级**检测目标、数据与上游来源、训练与改造过程,以及阶段性评测与性能结论。操作级命令仍以 `UPLOAD_AND_TRAIN.txt`、`CHAR_PIPELINE.txt` 为准。
|
| 17 |
|
| 18 |
---
|
|
|
|
| 181 |
## 8. 引用与致谢
|
| 182 |
|
| 183 |
方法与数据谱系主要参考 **TW-NLP** 的 **ChineseErrorCorrector** 项目及其公开的 Hugging Face 数据集与模型卡片;预训练骨干为 **哈工大 HFL** 发布的 **Chinese ELECTRA**(discriminator)。具体论文与引用格式见上游与 [ELECTRA 模型页](https://huggingface.co/hfl/chinese-electra-180g-base-discriminator) 相关说明。
|
| 184 |
+
|
| 185 |
+
```bibtex
|
| 186 |
+
@misc{tian2026csrpchainofthoughtreasoningchinese,
|
| 187 |
+
title={CSRP: Chain-of-Thought Reasoning for Chinese Text Correction via Reinforcement Learning with Efficiency-Aware Rewards},
|
| 188 |
+
author={Wei Tian and Yuhao Zhou and Man Lan},
|
| 189 |
+
year={2026},
|
| 190 |
+
eprint={2606.00020},
|
| 191 |
+
archivePrefix={arXiv},
|
| 192 |
+
primaryClass={cs.CL},
|
| 193 |
+
url={https://arxiv.org/abs/2606.00020},
|
| 194 |
+
}
|
| 195 |
+
```
|