Update README.md
Browse files
README.md
CHANGED
@@ -134,7 +134,7 @@ configs:
|
|
134 |
|
135 |
- ソース: [mynlp/niilc-qa on GitHub](https://github.com/mynlp/niilc-qa)
|
136 |
|
137 |
-
|
138 |
|
139 |
> This project provides a dataset for supporting the development of question answering systems. The data includes questions and their answers, and meta information such as question types, clues to obtain answers, Wikipedia pages in which answers can be found, and SPARQL queries for JWO (Japanese Wikipedia Ontology).
|
140 |
|
@@ -142,11 +142,11 @@ configs:
|
|
142 |
- 日本語: [https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/j_index.html](https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/j_index.html)
|
143 |
- 英語: [https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/](https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/)
|
144 |
|
145 |
-
|
146 |
|
147 |
[Creative Commons Attribution Share Alike 4.0 International](https://github.com/mynlp/niilc-qa/blob/master/LICENSE.txt)
|
148 |
|
149 |
-
|
150 |
|
151 |
```
|
152 |
@inproceedings{sekine2003question,
|
@@ -158,35 +158,31 @@ configs:
|
|
158 |
}
|
159 |
```
|
160 |
|
161 |
-
|
162 |
|
163 |
-
|
164 |
|
165 |
-
|
166 |
-
|
167 |
-
- `
|
168 |
-
-
|
169 |
-
- `answers` (`list[str]`): All of the acceptable answers for the question.
|
170 |
-
- Not include the questions without the answers (`answers: ['-']`)
|
171 |
|
172 |
### v1.1
|
173 |
|
174 |
-
split: test を修正
|
175 |
-
|
176 |
-
-
|
177 |
-
- `
|
178 |
-
-
|
179 |
-
- e.g., セミコロンが全角で分割できていなかった正解文字列を分割して再登録(`['星条旗;古き栄光'] -> ['星条旗','古き栄光']`)
|
180 |
|
181 |
### v1.2
|
182 |
|
183 |
-
|
184 |
-
|
185 |
-
-
|
186 |
-
- split名をソースに合わせて修正
|
187 |
- validation -> dev
|
188 |
-
-
|
189 |
-
- qid -> id
|
190 |
-
- question -> text
|
191 |
-
- dev の answers に対し、v1.1 の test と同様の修正を実施
|
192 |
|
|
|
134 |
|
135 |
- ソース: [mynlp/niilc-qa on GitHub](https://github.com/mynlp/niilc-qa)
|
136 |
|
137 |
+
# NIILC Question Answering Dataset
|
138 |
|
139 |
> This project provides a dataset for supporting the development of question answering systems. The data includes questions and their answers, and meta information such as question types, clues to obtain answers, Wikipedia pages in which answers can be found, and SPARQL queries for JWO (Japanese Wikipedia Ontology).
|
140 |
|
|
|
142 |
- 日本語: [https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/j_index.html](https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/j_index.html)
|
143 |
- 英語: [https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/](https://mynlp.is.s.u-tokyo.ac.jp/niilc-qa/)
|
144 |
|
145 |
+
## Licensing Information
|
146 |
|
147 |
[Creative Commons Attribution Share Alike 4.0 International](https://github.com/mynlp/niilc-qa/blob/master/LICENSE.txt)
|
148 |
|
149 |
+
## Citation Information
|
150 |
|
151 |
```
|
152 |
@inproceedings{sekine2003question,
|
|
|
158 |
}
|
159 |
```
|
160 |
|
161 |
+
# Subsets
|
162 |
|
163 |
+
## default
|
164 |
|
165 |
+
- `qid` (`str`): 質問を一意識別するためのID
|
166 |
+
- `question` (`str`): 質問文
|
167 |
+
- `answers` (`list[str]`): 質問に対する回答のリスト
|
168 |
+
- (回答がない質問(`answers: ['-']`)は除外した)
|
|
|
|
|
169 |
|
170 |
### v1.1
|
171 |
|
172 |
+
- split: test を修正
|
173 |
+
- [NIILC-ECQA2015_test.xml](https://github.com/mynlp/niilc-qa/blob/master/data/NIILC-ECQA2015_test.xml) から D_3列を追加
|
174 |
+
- `D_3` (`str`): 考えられる解答数
|
175 |
+
- 正解文字列(`answers` の要素)の微修正
|
176 |
+
- e.g., セミコロンが全角で分割できていなかった正解文字列を分割して再登録(`['星条旗;古き栄光'] -> ['星条旗','古き栄光']`)
|
|
|
177 |
|
178 |
### v1.2
|
179 |
|
180 |
+
- 各質問に[ソース](https://github.com/mynlp/niilc-qa)からメタデータ列を追加
|
181 |
+
- 各列の詳細は[ここ](https://github.com/mynlp/niilc-qa/blob/master/data/NIILC-ECQA2015_AnnotationDefinition.md)を参照
|
182 |
+
- split名を[ソース](https://github.com/mynlp/niilc-qa)に合わせて修正
|
|
|
183 |
- validation -> dev
|
184 |
+
- 列名を[ソース](https://github.com/mynlp/niilc-qa)に合わせて修正
|
185 |
+
- `qid` -> `id`
|
186 |
+
- `question` -> `text`
|
187 |
+
- dev の `answers` に対し、v1.1 の test と同様の修正を実施
|
188 |
|