File size: 2,951 Bytes
9543ba8
 
 
 
 
 
 
 
 
 
 
e10b932
069d529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d965b56
069d529
 
 
d965b56
069d529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0418846
069d529
 
0418846
069d529
 
 
 
 
e10b932
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
language:
  - en
pretty_name: "Augmented ARC-AGI Grids"
tags:
  - tabular
  - datasets
  - pretraining
license: "cc-by-sa-4.0"
---

# JDWebProgrammer/arg-agi-augmented

## Dataset Description

### Overview
This dataset is an augmented version of grids extracted from the [ARC-AGI dataset](https://huggingface.co/datasets/dataartist/arc-agi) (Abstraction and Reasoning Corpus). It focuses on **individual grids** rather than full tasks or games, providing an expanded collection for pretraining and testing models like autoencoders (AEs) or latent-space reasoners.

- **Source**: Derived from the `training` split of ARC-AGI (all demonstration and test grids).
- **Augmentations**: Each original grid is expanded with 5 transformations (horizontal flip, vertical flip, 90°/180°/270° rotations), resulting in 6 variants per grid (original + 5 augments).
- **Key Note**: This is **not the full games/tasks** from ARC-AGI. It contains only the raw, augmented grids (as 2D lists of integers 0-10) for standalone use in perceptual pretraining or reconstruction testing. Use the original ARC-AGI for full few-shot reasoning tasks.

### Dataset Structure
- **Format**: Hugging Face `Dataset` object.
- **Splits**: Single split (`train`) with one field:
  - `augmented_grids`: List of 2D lists (grids). Each grid is `[[int, ...], ...]` (H x W, values 0-10).
- **Size**: ~48,000 grids (from ~400 ARC training tasks × ~4 grids/task × 6 augments).
- **Metadata**: See `metadata.json` for stats (original grids, augmentation factor).

Example grid entry:
```python
augmented_grids[0] = [[0, 1, 0], [1, 0, 1], [0, 1, 0]]  # Example 3x3 grid
```

### Usage
Load and use for pretraining:
```python
from datasets import load_dataset
ds = load_dataset("JDWebProgrammer/arc-agi-augmented")
grids = ds['augmented_grids']  # List of all grids

```

Ideal for:
- Pretraining perceptual models.
- Testing reconstruction accuracy (compare original vs. augmented).
- Data augmentation for fluid intelligence tasks (e.g., ARC-like pattern inference).

### Generation
- Extracted all input/output grids from ARC-AGI `training` split demos/tests.
- Applied deterministic augmentations (flips/rotations) to expand variety without labels.
- No synthetic generation — pure augmentation of real ARC data.

### Limitations
- Grids only (no task structure/context) — not for end-to-end ARC solving.
- Augmentations preserve structure but may introduce artifacts (e.g., rotations on asymmetric grids).
- Values 0-10 (ARC standard); normalize for models.

### License
- Based on ARC-AGI (CC BY-SA 4.0) — inherits same license.
- Augmentations: MIT (free for research/commercial).

### Citation
```bibtex
@misc{dataartist/arc-agi,
  title = {ARC-AGI },
  author = {dataartist},
  year = {2025},
  url = {https://huggingface.co/datasets/dataartist/arc-agi}
}
```

---

*Generated for pretraining perceptual models on ARC-style puzzles. Not a substitute for full ARC tasks.*