CoolFace
Datasetpublic

GYASBGFUHAADSGADF/IDM-batch2

IDM-batch2 Second batch of IDM math trap items, in the same schema as 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… See the full description on the dataset page: https://huggingface.co/datasets/GYASBGFUHAADSGADF/IDM-batch2.

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes19downloads
README.md53 linesDownload Raw Back to root
1---2license: apache-2.03task_categories:4  - text-generation5language:6  - en7tags:8  - math9  - trap10  - reasoning11size_categories:12  - n<1K13configs:14  - config_name: default15    data_files:16      - split: train17        path: upload_batch2.jsonl18---19 20# IDM-batch221 22Second batch of IDM math trap items, in the same schema as [`GYASBGFUHAADSGADF/IDM-batch1`](https://huggingface.co/datasets/GYASBGFUHAADSGADF/IDM-batch1).23 24## Dataset summary25 26- **Rows:** 15227- **File:** `upload_batch2.jsonl`28- **Trap types:** Contradiction (130), Missing conditions (22)29- **Splits (field `split`):** train (139), test (13)30 31## Fields32 33| Field | Description |34| --- | --- |35| `original` | Original math problem |36| `trap` | Trap / modified problem |37| `annotation` | Explanation of the trap |38| `trap type` | Trap category |39| `source` | Problem source |40| `level` | Difficulty level |41| `split` | `train` or `test` |42| `answer` | Answer to the original problem |43| `additional Information` | Optional notes |44 45## Load46 47```python48from datasets import load_dataset49 50ds = load_dataset("GYASBGFUHAADSGADF/IDM-batch2")51print(ds)52```53