abstraction_prompt stringlengths 3.69k 7.44k | abstraction_prompt_length int64 837 4.58k | generated_abstractions listlengths 16 16 | train stringlengths 183 5.95k | test stringlengths 64 4.67k | source stringclasses 4
values | prompt stringlengths 1.24k 4.98k | answer stringlengths 9 1.52k | num_tokens int64 344 4.09k |
|---|---|---|---|---|---|---|---|---|
<|im_start|>user
# ARC HINT GENERATOR
## Role & Goal
You are an expert ARC (Abstraction and Reasoning Corpus) analyst. Your task is to generate a concise, actionable hint for a user who is struggling with an ARC problem. Analyze the problem and its correct solution to produce a single standalone, targeted hint that he... | 2,677 | [
"<note1>\n<description>Look for a uniform enlargement: sometimes the entire grid is scaled by an integer factor so that each original cell becomes a small square of identical color in the output. This is effective when the output shows repeated, identical small tiles that line up in a regular grid.</description>\n<... | [{"input": [[0, 7, 3, 0, 0, 5], [9, 0, 0, 0, 0, 5], [1, 2, 4, 0, 8, 0]], "output": [[0, 0, 7, 7, 3, 3, 0, 0, 0, 0, 5, 5], [0, 0, 7, 7, 3, 3, 0, 0, 0, 0, 5, 5], [9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [1, 1, 2, 2, 4, 4, 0, 0, 8, 8, 0, 0], [1, 1, 2, 2, 4, 4, 0, 0, 8, 8, 0, 0]]}, {"inpu... | [{"input": [[3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 8, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 8, 3, 3, 3, 3, 3], [3, 3, 3, 8, 3, 3, 3, 3], [8, 3, 3, 3, 3, 3, 3, 3], [8, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, 3], [3, 3, 3, 3, 3, 3, 3, ... | rearc | You will be given some number of paired example inputs and outputs grids. The outputs were produced by applying a transformation rule to the input grids. In addition to the paired example inputs and outputs, there is also one test input without a known output. The inputs and outputs are each “grids”. A grid is a rectan... | ```
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 3 8 8 3 3 3 3 3 3
3 3 3 3 3 3 3 3 8 8 3 3 3 3 3 3
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 3 3 3 3 3 3 3 ... | 2,184 |
<|im_start|>user
# ARC HINT GENERATOR
## Role & Goal
You are an expert ARC (Abstraction and Reasoning Corpus) analyst. Your task is to generate a concise, actionable hint for a user who is struggling with an ARC problem. Analyze the problem and its correct solution to produce a single standalone, targeted hint that he... | 1,587 | [
"<note1>\n<description>Look for a regular tiling: many ARC tasks stack identical-size square blocks separated by a single-column stripe of a constant color. When you see repeated 4×4 areas with the same one-column color between them, treat each 4×4 region as one unit to summarize. This reduces the problem from a la... | [{"input": [[5, 5, 5, 5, 1, 4, 4, 4, 4, 1, 2, 2, 2, 2, 1, 8, 8, 8, 8, 1, 7, 7, 7, 7], [5, 5, 5, 5, 1, 4, 4, 4, 4, 1, 1, 2, 2, 1, 1, 8, 1, 1, 8, 1, 7, 1, 1, 7], [5, 5, 5, 5, 1, 4, 4, 4, 4, 1, 1, 2, 2, 1, 1, 8, 1, 1, 8, 1, 7, 1, 1, 7], [5, 5, 5, 5, 1, 4, 4, 4, 4, 1, 2, 2, 2, 2, 1, 8, 8, 8, 8, 1, 7, 7, 7, 7]], "output": [... | [{"input": [[5, 5, 5, 5, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 6, 6, 6, 6], [5, 3, 3, 5, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 6, 6, 6, 6], [5, 3, 3, 5, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 6, 6, 6, 6], [5, 5, 5, 5, 3, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 6, 6, 6, 6]], "output": [[8, 8, 8, 8], [2, 2, 2, 2], [2, 2, 2, 2], [2, 2, 2, 2]]}] | rearc | You will be given some number of paired example inputs and outputs grids. The outputs were produced by applying a transformation rule to the input grids. In addition to the paired example inputs and outputs, there is also one test input without a known output. The inputs and outputs are each “grids”. A grid is a rectan... | ```
8 8 8 8
2 2 2 2
2 2 2 2
2 2 2 2
``` | 1,094 |
<|im_start|>user
# ARC HINT GENERATOR
## Role & Goal
You are an expert ARC (Abstraction and Reasoning Corpus) analyst. Your task is to generate a concise, actionable hint for a user who is struggling with an ARC problem. Analyze the problem and its correct solution to produce a single standalone, targeted hint that he... | 4,193 | [
"<note1>\n<description>Look for a single global rigid motion that repositions every pixel the same way. Rigid motions (rotations/reflections/translations) preserve adjacency and relative distances, so the output will look like the same pattern moved or turned rather than recolored or reshaped.</description>\n<examp... | [{"input": [[3, 9, 3, 1, 3, 3, 3], [9, 3, 3, 3, 3, 0, 3], [6, 3, 3, 6, 0, 3, 3], [9, 3, 3, 3, 6, 6, 6], [3, 3, 9, 3, 1, 1, 3], [6, 3, 2, 1, 2, 0, 5], [1, 3, 3, 3, 3, 3, 9], [3, 9, 5, 3, 6, 3, 9], [3, 3, 3, 3, 1, 1, 9], [3, 3, 6, 3, 0, 3, 2]], "output": [[2, 3, 0, 3, 6, 3, 3], [9, 1, 1, 3, 3, 3, 3], [9, 3, 6, 3, 5, 9, 3... | [{"input": [[1, 8, 8, 8, 0, 0, 1, 8, 1, 8, 8, 7, 8, 1, 5, 1, 8, 4, 8, 8, 8], [8, 8, 5, 0, 5, 4, 4, 8, 1, 8, 8, 8, 8, 8, 8, 5, 8, 8, 4, 8, 8], [4, 8, 8, 4, 8, 8, 7, 5, 8, 5, 4, 5, 8, 5, 8, 5, 8, 7, 8, 8, 7], [7, 1, 8, 0, 5, 7, 8, 1, 8, 5, 1, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8], [8, 1, 1, 1, 7, 8, 1, 1, 5, 8, 1, 0, 0, 1, 8, 8,... | rearc | You will be given some number of paired example inputs and outputs grids. The outputs were produced by applying a transformation rule to the input grids. In addition to the paired example inputs and outputs, there is also one test input without a known output. The inputs and outputs are each “grids”. A grid is a rectan... | ```
8 4 1 5 8 8 5 4 4 8 8 8 8 5 1 8 1 7 8 8 4
8 1 8 0 8 8 1 5 8 8 1 8 8 5 1 4 8 8 4 8 5
4 8 8 8 8 8 1 8 8 8 8 8 0 8 8 8 8 8 8 1 1
5 0 8 1 8 8 1 8 8 1 5 1 8 1 4 8 8 8 0 8 1
1 8 8 7 8 8 8 8 1 4 8 1 8 8 1 8 4 1 0 4 4
8 8 7 1 4 7 0 4 8 0 4 8 1 8 8 8 5 8 5 8 0
4 8 1 8 8 8 0 8 8 0 5 8 1 8 0 8 7 1 1 8 7
8 0 8 4 8 8 8 8 7 4 8 ... | 3,700 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 2,201 | ["<note1>\n<description>Look for full-length uniform lines (a row or a column where every cell is th(...TRUNCATED) | "[{\"input\": [[7, 7, 7, 7, 1, 7, 7, 7, 7], [7, 7, 7, 7, 1, 7, 7, 7, 7], [7, 7, 7, 7, 1, 7, 7, 7, 7](...TRUNCATED) | "[{\"input\": [[9, 9, 9, 7, 5, 3, 9], [9, 9, 9, 7, 3, 3, 9], [9, 9, 9, 7, 9, 4, 3], [9, 9, 9, 7, 9, (...TRUNCATED) | rearc | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n5 3 9 7 5 3 9\n3 3 9 7 3 3 9\n9 4 3 7 9 4 3\n9 9 9 7 9 9 9\n9 4 3 7 9 4 3\n9 9 9 7 9 9 9\n1 9 (...TRUNCATED) | 1,708 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 2,967 | ["<note1>\n<description>Look first for a single new color that appears in every output but not in th(...TRUNCATED) | "[{\"input\": [[7, 7, 7, 7, 7, 7, 7, 3, 3, 3, 7, 7, 3, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7], [7, 3, 3, 7(...TRUNCATED) | "[{\"input\": [[8, 8, 7, 8, 8, 8, 7, 8, 8, 8, 8, 8, 7, 8, 8, 8, 8, 7, 8, 8], [8, 8, 8, 8, 8, 8, 8, 8(...TRUNCATED) | rearc | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n8 1 7 1 8 1 7 1 8 8 8 1 7 1 8 8 1 7 1 8\n1 1 1 1 8 1 1 1 8 8 8 1 1 1 1 1 1 1 1 1\n7 1 8 8 8 1 (...TRUNCATED) | 2,474 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 3,523 | ["<note1>\n<description>Look for a horizontal full-width stripe: a single row whose every cell has t(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0(...TRUNCATED) | barc_heavy | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n7 7 7 7 7 7 7 7 7 7 7 7 7 7\n7 7 7 7 7 7 7 7 7 7 7 7 7 7\n7 7 7 7 7 7 7 7 7 7 7 7 7 7\n7 7 7 7(...TRUNCATED) | 3,030 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 2,911 | ["<note1>\n<description>Look for rows or columns that are completely filled with the same color. A f(...TRUNCATED) | "[{\"input\": [[9, 9, 9, 9, 9, 9, 9, 9], [0, 0, 9, 9, 9, 0, 0, 0], [9, 9, 9, 9, 9, 9, 9, 9], [0, 0, (...TRUNCATED) | "[{\"input\": [[8, 8, 8, 8, 1, 8, 1, 1, 8, 1, 8, 8, 8, 8, 8, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1(...TRUNCATED) | rearc | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n8 8 8 8 1 8 2 2 8 1 8 8 8 8 8 2\n2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2\n8 8 8 8 8 8 2 2 8 8 8 8 8 8 (...TRUNCATED) | 2,418 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 1,547 | ["<note1>\n<description>Look for the dominant non-background color by counting occurrences across th(...TRUNCATED) | "[{\"input\": [[4, 1, 0, 1, 0, 0, 1], [8, 1, 9, 0, 1, 1, 0], [8, 9, 1, 1, 0, 4, 0], [8, 0, 9, 9, 9, (...TRUNCATED) | "[{\"input\": [[5, 9, 0, 2, 9, 2, 0, 9], [9, 5, 9, 2, 0, 2, 0, 9], [8, 9, 0, 0, 5, 2, 2, 5], [0, 0, (...TRUNCATED) | barc_heavy | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n5 5 5 5 5 5 5 5\n5 5 5 5 5 5 5 5\n5 5 5 5 5 5 5 5\n5 5 5 5 5 5 5 5\n5 5 5 5 5 5 5 5\n5 5 5 5 5(...TRUNCATED) | 1,054 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 3,381 | ["<note1>\n<description>Look first for rows or columns that are entirely the same color; these act a(...TRUNCATED) | "[{\"input\": [[7, 7, 7, 9, 0, 7, 7, 7, 7, 0, 7, 7, 7, 2, 0, 3, 7, 2, 7], [7, 7, 7, 7, 0, 2, 7, 7, 9(...TRUNCATED) | "[{\"input\": [[4, 9, 9, 2, 9, 9, 9, 2, 9, 8, 0], [9, 3, 8, 2, 9, 0, 4, 2, 4, 9, 3], [0, 9, 9, 2, 8,(...TRUNCATED) | rearc | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n3 3 3 2 9 9 9 2 0 0 0\n3 3 3 2 9 9 9 2 0 0 0\n3 3 3 2 9 9 9 2 0 0 0\n2 2 2 2 2 2 2 2 2 2 2\n9 (...TRUNCATED) | 2,888 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 3,523 | ["<note1>\n<description>Look for the single color that is treated as the \"seed\" in every example: (...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0(...TRUNCATED) | barc_heavy | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n0 0 0 0 0 0 0 0 0 0 0 0 0 0\n0 0 0 0 0 0 0 0 0 0 0 0 0 0\n0 0 0 0 0 0 0 0 0 0 0 0 0 0\n0 0 0 0(...TRUNCATED) | 3,030 |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 3