Views
No views yet
| Source | Type | Sample |
|---|---|---|
| CCTC | grammar | 4470 |
| cscd-ns | spell | 40000 |
| CTC2021 | grammar | 969 |
| ECSpell | spell | 8180 |
| lemon | spell | 22252 |
| MCSCSet | spell | 39302 |
| midu2022 | grammar | 2014 |
| NLPCC2023 | spell | 1000 |
| Total | — | 118187 |
| Field | Type | Description |
|---|---|---|
| source | string | 可能包含拼写/语法错误的源句子 |
| target | string | 纠错后的目标句子 |
| label | int | 源句子中是否包含错误,若为1,则包含错误,否则不包含错误。 |
1{
2 "source": "完善农产品上行发展机智。",
3 "target": "完善农产品上行发展机制。",
4 "label": 1
5}1from datasets import load_dataset
2
3data = load_dataset('WangZeJun/chinese_text_correction')
4print(data)
5DatasetDict({
6 train: Dataset({
7 features: ['source', 'target', 'label'],
8 num_rows: 118187
9 })
10})