Datasets:
Update README.md
Browse files# MultiReasoningQA
A unified dataset of 10,000 QA samples across 5 reasoning types:
- **Mathematical** (from GSM8K)
- **Multihop** (from HotpotQA)
- **Reading comprehension** (from DROP)
- **Commonsense** (from CommonsenseQA)
- **Logical** (from ReClor)
## Dataset Structure
**Columns**:
- `question` — The question text (may include context)
- `answer` — Correct answer
- `reasoning_type` — One of: `mathematical`, `multihop`, `reading_comp`, `commonsense`, `logical`
- `source` — Original dataset name
- `id` — Unique ID per row
**Splits**:
- `train`: 7847 rows
- `validation`: 980 rows
- `test`: 980 rows
README.md
CHANGED
|
@@ -54,4 +54,10 @@ configs:
|
|
| 54 |
path: data/validation-*
|
| 55 |
- split: test
|
| 56 |
path: data/test-*
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
path: data/validation-*
|
| 55 |
- split: test
|
| 56 |
path: data/test-*
|
| 57 |
+
task_categories:
|
| 58 |
+
- question-answering
|
| 59 |
+
language:
|
| 60 |
+
- en
|
| 61 |
+
size_categories:
|
| 62 |
+
- 1K<n<10K
|
| 63 |
+
---
|