abstraction_prompt stringlengths 3.71k 7.44k | abstraction_prompt_length int64 849 4.58k | generated_abstractions listlengths 16 16 | train stringlengths 219 5.63k | test stringlengths 46 4.03k | source stringclasses 4
values | prompt stringlengths 1.25k 4.98k | answer stringlengths 9 1.33k | num_tokens int64 356 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... | 3,083 | [
"<note1>\n<description>Check whether the output is a square and how its side length relates to the input row length. A consistent multiplicative relationship (e.g., the side is a fixed multiple of the input length) is a strong clue about how many repeated placements are used.</description>\n<example>For instance, i... | [{"input": [[0, 1, 6, 7]], "output": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 7], [0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 7, 0], [0, 0, 0, 0, 0, 0, 0, 1, 6, 7, 0, 0], [0, 0, 0, 0, 0, 0, 1, 6, 7, 0, 0, 0], [0, 0, 0, 0, 0, ... | [{"input": [[3, 5, 0]], "output": [[0, 0, 0, 0, 0, 3], [0, 0, 0, 0, 3, 5], [0, 0, 0, 3, 5, 0], [0, 0, 3, 5, 0, 0], [0, 3, 5, 0, 0, 0], [3, 5, 0, 0, 0, 0]]}] | 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... | ```
0 0 0 0 0 3
0 0 0 0 3 5
0 0 0 3 5 0
0 0 3 5 0 0
0 3 5 0 0 0
3 5 0 0 0 0
``` | 2,590 |
<|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,829 | [
"<note1>\n<description>Check the size relationship first: if the output's height and width are exact multiples of the input's, the output may be composed of equal-sized tiles. This reduces the problem to comparing a small set of tiles instead of the whole grid.</description>\n<example>For instance, if an input is 3... | [{"input": [[1, 6], [2, 3]], "output": [[1, 6, 2, 1], [2, 3, 3, 6], [6, 3, 3, 2], [1, 2, 6, 1]]}, {"input": [[8, 8, 8, 8, 2, 8, 8], [8, 8, 8, 8, 8, 8, 2], [8, 4, 4, 8, 7, 8, 8], [2, 8, 5, 8, 8, 8, 4], [8, 5, 4, 8, 8, 8, 8], [9, 8, 6, 8, 8, 8, 5], [8, 8, 8, 8, 8, 8, 8]], "output": [[8, 8, 8, 8, 2, 8, 8, 8, 9, 8, 2, 8, 8... | [{"input": [[6, 6, 6, 6, 6], [6, 6, 6, 6, 6], [6, 6, 6, 6, 6], [6, 6, 6, 6, 6], [6, 6, 6, 6, 6]], "output": [[6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, 6, 6, 6, 6], [6, 6, 6, 6, 6, 6, ... | 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... | ```
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
6 6 6 6 6 6 6 6 6 6
``` | 1,336 |
<|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,159 | [
"<note1>\n<description>Look for a single, recurring color that appears as a compact patch in every training input and is the only non-background color remaining in the outputs. That recurring color is the candidate \"target\" to keep. This is effective because the transformation consistently isolates one color whil... | [{"input": [[0, 1, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 0, 0, 0], [0, 0, 4, 4, 0, 0, 0, 1, 6, 0], [0, 4, 4, 0, 0, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 6, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 6, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 3, 3, 3, 0, 0, 0, 0, 0, 0], [3, 0, 0, 3, 0, 0, 0, 0, 0, 0], [3, 3, 3, 3, 0, 0, 0... | [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 4, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 4], [0, 0, 0, 0, 0, 0, 0, 4, 4, 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, 1, 9, 9], [0, 0, 0, 0, 0, 0, 0, 9, 9, 9], [0, 0, 0, 0, 0, 0, 0... | barc_heavy | 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... | ```
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 4 0
0 0 0 0 0 0 0 4 4 0
0 0 0 0 0 0 0 4 4 4
0 0 0 0 0 0 0 4 4 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 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
``` | 1,666 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 2,159 | ["<note1>\n<description>Look first for a single, contiguous rectangle of one color that stands out f(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0,(...TRUNCATED) | "[{\"input\": [[0, 0, 4, 0, 0, 0, 2, 3, 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) | "```\n0 0 4 0 0 0 2 3 0 0\n0 0 0 0 0 0 0 0 0 0\n0 0 0 0 0 0 0 0 0 0\n0 0 0 0 0 0 0 0 0 0\n0 0 0 0 0 (...TRUNCATED) | 1,666 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 2,509 | ["<note1>\n<description>Start by finding the dominant background color and the sparse \"signal\" pix(...TRUNCATED) | "[{\"input\": [[9, 9, 9, 7, 9, 3, 1], [6, 9, 9, 9, 9, 1, 9], [9, 9, 9, 9, 5, 9, 9], [6, 9, 9, 0, 9, (...TRUNCATED) | "[{\"input\": [[5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], [5, 5, 2, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5(...TRUNCATED) | rearc | "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 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5\n5 5 2 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 5(...TRUNCATED) | 2,016 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 3,525 | ["<note1>\n<description>First check whether the output is a larger grid made by stacking copies of t(...TRUNCATED) | "[{\"input\": [[5, 5, 6, 5, 5, 5, 5, 6, 6, 2, 5, 6], [5, 5, 5, 6, 5, 5, 7, 5, 5, 5, 5, 5], [5, 7, 5,(...TRUNCATED) | "[{\"input\": [[8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 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 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8\n8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8(...TRUNCATED) | 3,032 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 1,623 | ["<note1>\n<description>First isolate the single non-background object that the examples all use as (...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, (...TRUNCATED) | "[{\"input\": [[0, 2, 2, 2, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 2, 0, 0, 0, 0, 0], [0, 2, 0, 0, 0, 0, 0,(...TRUNCATED) | arc 1 | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n0 2 2 2 2 0 4 0 0 0\n0 2 4 4 2 4 0 0 0 0\n0 2 4 4 4 4 4 4 4 4\n0 2 4 4 4 4 4 4 4 4\n0 2 4 4 4 (...TRUNCATED) | 1,130 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 1,625 | ["<note1>\n<description>Look for a small, fixed set of colors that are the only ones that ever chang(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 7, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [4, 0, 0, 0, 3, 0, 8, 6], [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, 4, 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\n0 0 0 0 0 0 0 0 0\n0 0 0 0 0 8 0 0 0\n9 0 0 0 0 0 0 0 0\n2 0 0 0 0 0 0 0 0\(...TRUNCATED) | 1,132 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 1,623 | ["<note1>\n<description>Look for a regular tiling: the output often consists of a grid of uniform sq(...TRUNCATED) | "[{\"input\": [[6, 5, 2], [2, 2, 2], [5, 6, 4], [4, 5, 0]], \"output\": [[6, 6, 6, 6, 5, 5, 5, 5, 2,(...TRUNCATED) | "[{\"input\": [[9, 9, 0], [9, 2, 2], [9, 0, 2], [2, 0, 2]], \"output\": [[9, 9, 9, 9, 0, 0], [9, 9, (...TRUNCATED) | rearc | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | "```\n9 9 9 9 0 0\n9 9 9 9 0 0\n9 9 2 2 2 2\n9 9 2 2 2 2\n9 9 0 0 2 2\n9 9 0 0 2 2\n2 2 0 0 2 2\n2 2(...TRUNCATED) | 1,130 |
"<|im_start|>user\n# ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstraction and Re(...TRUNCATED) | 1,191 | ["<note1>\n<description>Look for a horizontal reflection: the right half of the output may be a left(...TRUNCATED) | "[{\"input\": [[0, 0, 4, 0], [0, 9, 0, 2], [0, 0, 6, 6], [3, 0, 0, 8], [5, 0, 8, 9], [3, 5, 1, 8]], (...TRUNCATED) | "[{\"input\": [[7, 9, 4], [9, 1, 9], [0, 0, 0]], \"output\": [[7, 9, 4, 4, 9, 7], [9, 1, 9, 9, 1, 9](...TRUNCATED) | barc_heavy | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | ```
7 9 4 4 9 7
9 1 9 9 1 9
0 0 0 0 0 0
``` | 698 |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 3