Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Languages:
Chinese
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -34,7 +34,103 @@ dataset_info:
|
|
34 |
num_examples: 1002
|
35 |
download_size: 4781898
|
36 |
dataset_size: 21350661
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
---
|
38 |
# Dataset Card for "squad-cmrc2018-zhtw"
|
39 |
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
num_examples: 1002
|
35 |
download_size: 4781898
|
36 |
dataset_size: 21350661
|
37 |
+
license: cc-by-sa-4.0
|
38 |
+
task_categories:
|
39 |
+
- question-answering
|
40 |
+
language:
|
41 |
+
- zh
|
42 |
+
size_categories:
|
43 |
+
- 10K<n<100K
|
44 |
---
|
45 |
# Dataset Card for "squad-cmrc2018-zhtw"
|
46 |
|
47 |
+
## 資料集摘要
|
48 |
+
|
49 |
+
[CMRC 2018](https://hfl-rc.github.io/cmrc2018/) 是第二屆「訊飛盃」中文機器閱讀理解頒獎研討會(CMRC 2018)中相關競賽所使用的資料集。
|
50 |
+
|
51 |
+
它主要用於中文機器閱讀理解的跨度提取資料集,以增加該領域的語言多樣性。該資料集由人類專家在維基百科段落上註釋的近 20,000 個真實問題組成。
|
52 |
+
|
53 |
+
同時它也註釋了一個挑戰集,其中包含需要在整個上下文中進行全面理解和多句推理的問題。
|
54 |
+
|
55 |
+
原始資料來源:
|
56 |
+
- https://hfl-rc.github.io/cmrc2018/
|
57 |
+
- https://github.com/ymcui/cmrc2018
|
58 |
+
|
59 |
+
## 資料集結構
|
60 |
+
|
61 |
+
範例如下:
|
62 |
+
|
63 |
+
```
|
64 |
+
{
|
65 |
+
"id":"DEV_1889_QUERY_0",
|
66 |
+
"context":"巴士底廣場是法國首都巴黎的一個廣場是法國大革命的重要紀念地方。過去是巴士底獄所在地直到攻佔巴士底獄隨後在法國革命期間的1789年7月14日到1790年7月14日之間被徹底破壞沒有留下任何痕跡。這個廣場跨巴黎市的3個區:第四區、第十一區和第十二區。這個廣場和周邊地區簡稱為“巴士底”。立於廣場中心的七月圓柱由路易-菲利普一世興建於1833年到1840年是為了紀念1830年的七月革命。其他顯著的特徵包括巴士底歌劇院、巴士底地鐵站以及一段聖馬丁運河。在1984年以前歌劇院所在的地方曾經是巴士底火車站。這個廣場經常舉辦音樂會或類似活動。巴士底的東北部擁有許多咖啡館、酒吧、夜總會和音樂廳夜生活頗為熱鬧。由於這個廣場具有相當的歷史意義也經常用於政治示威包括大規模的2006年3月28日法國勞工抗議。在巴士底廣場交匯的道路有聖安託萬路、聖安託萬市郊路、亨利四世大道、里昂路、勒努瓦大道、博馬舍大道等。",
|
67 |
+
"question":"巴士底廣場是哪場革命的重要紀念地方?",
|
68 |
+
"answers":{
|
69 |
+
"text":[
|
70 |
+
"法國大革命"
|
71 |
+
],
|
72 |
+
"answer_start":[
|
73 |
+
18
|
74 |
+
]
|
75 |
+
}
|
76 |
+
}
|
77 |
+
```
|
78 |
+
|
79 |
+
## 資料欄位
|
80 |
+
|
81 |
+
所有配置(Split)的資料欄位都是相同的:
|
82 |
+
|
83 |
+
- `id`: (string) 編號
|
84 |
+
- `context`: (string) 問題內容的上下文
|
85 |
+
- `question`: (string) 問題
|
86 |
+
- `answers`: 問題回答(基於內容的上下文來提取), 在SQuAD的結構裡, `text` 與 `answer_start` 是一個 list 列表
|
87 |
+
- `text`: list(string) 問題的答案
|
88 |
+
- `answer_start`: list(int) 問題的答案位於 `context` 上下文中的位置
|
89 |
+
|
90 |
+
## 資料分割
|
91 |
+
|
92 |
+
這個資料集總有下列的分割(split)子集:
|
93 |
+
|
94 |
+
- `train`: 10,142 筆
|
95 |
+
- `test`: 1,002 筆
|
96 |
+
- `validation`: 3,219 筆
|
97 |
+
|
98 |
+
## 如何使用
|
99 |
+
|
100 |
+
```python
|
101 |
+
from datasets import load_dataset
|
102 |
+
|
103 |
+
# 請使用 `split="train"` 參數來指定要使用的分割(split)
|
104 |
+
dataset = load_dataset("erhwenkuo/squad-cmrc2018-zhtw", split="train")
|
105 |
+
```
|
106 |
+
|
107 |
+
詳細的教學可參考:
|
108 |
+
- [NLP 課程-問答系統](https://huggingface.co/learn/nlp-course/zh-TW/chapter7/7?fw=pt)
|
109 |
+
|
110 |
+
## 許可資訊
|
111 |
+
|
112 |
+
CC BY-SA 4.0
|
113 |
+
|
114 |
+
## 論文引用
|
115 |
+
|
116 |
+
```
|
117 |
+
@inproceedings{cui-emnlp2019-cmrc2018,
|
118 |
+
title = "A Span-Extraction Dataset for {C}hinese Machine Reading Comprehension",
|
119 |
+
author = "Cui, Yiming and
|
120 |
+
Liu, Ting and
|
121 |
+
Che, Wanxiang and
|
122 |
+
Xiao, Li and
|
123 |
+
Chen, Zhipeng and
|
124 |
+
Ma, Wentao and
|
125 |
+
Wang, Shijin and
|
126 |
+
Hu, Guoping",
|
127 |
+
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)",
|
128 |
+
month = nov,
|
129 |
+
year = "2019",
|
130 |
+
address = "Hong Kong, China",
|
131 |
+
publisher = "Association for Computational Linguistics",
|
132 |
+
url = "https://www.aclweb.org/anthology/D19-1600",
|
133 |
+
doi = "10.18653/v1/D19-1600",
|
134 |
+
pages = "5886--5891",
|
135 |
+
}
|
136 |
+
```
|