jiacheng-ye
commited on
Commit
·
15532ac
1
Parent(s):
2a100dd
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- question-answering
|
4 |
+
language:
|
5 |
+
- zh
|
6 |
+
pretty_name: LogiQA-zh
|
7 |
+
size_categories:
|
8 |
+
- 1K<n<10K
|
9 |
+
paperswithcode_id: logiqa
|
10 |
+
dataset_info:
|
11 |
+
features:
|
12 |
+
- name: context
|
13 |
+
dtype: string
|
14 |
+
- name: query
|
15 |
+
dtype: string
|
16 |
+
- name: options
|
17 |
+
sequence:
|
18 |
+
dtype: string
|
19 |
+
- name: correct_option
|
20 |
+
dtype: string
|
21 |
+
splits:
|
22 |
+
- name: train
|
23 |
+
num_examples: 7376
|
24 |
+
- name: validation
|
25 |
+
num_examples: 651
|
26 |
+
- name: test
|
27 |
+
num_examples: 651
|
28 |
+
---
|
29 |
+
# Dataset Card for LogiQA
|
30 |
+
|
31 |
+
## Dataset Description
|
32 |
+
|
33 |
+
- **Homepage:**
|
34 |
+
- **Repository:**
|
35 |
+
- **Paper:**
|
36 |
+
- **Leaderboard:**
|
37 |
+
- **Point of Contact:**
|
38 |
+
|
39 |
+
### Dataset Summary
|
40 |
+
|
41 |
+
LogiQA is constructed from the logical comprehension problems from publically available questions of the National Civil Servants Examination of China, which are designed to test the civil servant candidates’ critical thinking and problem solving. This dataset includes the Chinese versions only.
|
42 |
+
|
43 |
+
|
44 |
+
## Dataset Structure
|
45 |
+
|
46 |
+
### Data Instances
|
47 |
+
|
48 |
+
An example from `train` looks as follows:
|
49 |
+
```
|
50 |
+
{'context': '有些广东人不爱吃辣椒.因此,有些南方人不爱吃辣椒.',
|
51 |
+
'query': '以下哪项能保证上述论证的成立?',
|
52 |
+
'options': ['有些广东人爱吃辣椒',
|
53 |
+
'爱吃辣椒的有些是南方人',
|
54 |
+
'所有的广东人都是南方人',
|
55 |
+
'有些广东人不爱吃辣椒也不爱吃甜食'],
|
56 |
+
'correct_option': 2}
|
57 |
+
```
|
58 |
+
|
59 |
+
### Data Fields
|
60 |
+
|
61 |
+
- `context`: a `string` feature.
|
62 |
+
- `query`: a `string` feature.
|
63 |
+
- `answers`: a `list` feature containing `string` features.
|
64 |
+
- `correct_option`: a `string` feature.
|
65 |
+
|
66 |
+
|
67 |
+
### Data Splits
|
68 |
+
|
69 |
+
|train|validation|test|
|
70 |
+
|----:|---------:|---:|
|
71 |
+
| 7376| 651| 651|
|
72 |
+
|
73 |
+
|
74 |
+
## Additional Information
|
75 |
+
|
76 |
+
### Dataset Curators
|
77 |
+
|
78 |
+
The original LogiQA was produced by Jian Liu, Leyang Cui , Hanmeng Liu, Dandan Huang, Yile Wang, and Yue Zhang.
|
79 |
+
|
80 |
+
### Licensing Information
|
81 |
+
|
82 |
+
[More Information Needed]
|
83 |
+
|
84 |
+
### Citation Information
|
85 |
+
|
86 |
+
```
|
87 |
+
@article{liu2020logiqa,
|
88 |
+
title={Logiqa: A challenge dataset for machine reading comprehension with logical reasoning},
|
89 |
+
author={Liu, Jian and Cui, Leyang and Liu, Hanmeng and Huang, Dandan and Wang, Yile and Zhang, Yue},
|
90 |
+
journal={arXiv preprint arXiv:2007.08124},
|
91 |
+
year={2020}
|
92 |
+
}
|
93 |
+
```
|
94 |
+
|
95 |
+
### Contributions
|
96 |
+
[@jiacheng-ye](https://github.com/jiacheng-ye) added this Chinese dataset.
|
97 |
+
[@lucasmccabe](https://github.com/lucasmccabe) added the English dataset.
|