File size: 1,113 Bytes
ddcb7a8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
license: apache-2.0
task_categories:
  - text-generation
language:
  - en
tags:
  - math
  - trap
  - reasoning
size_categories:
  - n<1K
configs:
  - config_name: default
    data_files:
      - split: train
        path: upload_batch2.jsonl
---

# IDM-batch2

Second batch of IDM math trap items, in the same schema as [`GYASBGFUHAADSGADF/IDM-batch1`](https://huggingface.co/datasets/GYASBGFUHAADSGADF/IDM-batch1).

## Dataset summary

- **Rows:** 152
- **File:** `upload_batch2.jsonl`
- **Trap types:** Contradiction (130), Missing conditions (22)
- **Splits (field `split`):** train (139), test (13)

## Fields

| Field | Description |
| --- | --- |
| `original` | Original math problem |
| `trap` | Trap / modified problem |
| `annotation` | Explanation of the trap |
| `trap type` | Trap category |
| `source` | Problem source |
| `level` | Difficulty level |
| `split` | `train` or `test` |
| `answer` | Answer to the original problem |
| `additional Information` | Optional notes |

## Load

```python
from datasets import load_dataset

ds = load_dataset("GYASBGFUHAADSGADF/IDM-batch2")
print(ds)
```