abstraction_prompt stringlengths 4.78k 8.49k | abstraction_prompt_length int64 1.09k 4.8k | generated_abstractions listlengths 16 16 | train stringlengths 270 5.88k | test stringlengths 75 4.84k | source stringclasses 4
values | prompt stringlengths 1.28k 4.99k | answer stringlengths 9 1.81k | num_tokens int64 386 4.09k |
|---|---|---|---|---|---|---|---|---|
<|im_start|>user
Developer: # 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 h... | 1,836 | [
"<note1>\n<description>Find the anchor: the unique non-black pixel in the input is the origin that determines the whole transformation. Treat that pixel as the center of the operation rather than as an isolated dot to be copied.</description>\n<example>Imagine a grid with a single green pixel at (r,c). For the purp... | [{"input": [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 6, 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, 0, 0]], "output": [[0, 0, 6, 0, 0, 6, 0, 0], [6, 6, 6, 6, 6, 0, 0, 0], [6, 6, 6, 6, 6, 0, 0, 0], [6, 0, 6, ... | [{"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, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 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]], "output": [[0, 0, 0, 0, 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
0 0 0 3 0 3 0 0 0
0 0 0 3 0 3 0 0 0
0 3 0 0 3 0 0 3 0
0 0 3 3 3 3 3 0 0
0 0 3 3 3 3 3 0 0
0 0 3 0 3 0 3 0 0
0 0 0 0 3 0 0 0 0
``` | 1,132 |
<|im_start|>user
Developer: # 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 h... | 1,552 | [
"<note1>\n<description>Look for a single non-background color that consistently appears in every input; that color is the object being transformed. Treat every pixel of that color as part of one object (ignore other colors and background). This reduces the problem to manipulating one contiguous object instead of ma... | [{"input": [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0], [0, 2, 2, 2, 2, 0], [0, 2, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0], [0, 3, 3, 0, 0, 0], [0, 0, 3, 3, 0, 0], [0, 0, 3, 3, 0, 0], [0, 3, 3, 0, 0, 0], [0, 0, 0, 0, 0, 0]]}, {"input": [[0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 0, 0], [0,... | [{"input": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 2, 2, 0, 2, 2, 0], [0, 2, 2, 2, 2, 2, 0], [0, 2, 2, 2, 2, 2, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]], "output": [[0, 0, 0, 0, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0], [0, 0, 3, 3, 3, 0, 0], [0, 0, 3, 3, 0, 0, 0], [0, 0, 3, 3, 3, 0, 0], [0, 0, 3, 3, 3, 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 3 3 3 0 0
0 0 3 3 3 0 0
0 0 3 3 0 0 0
0 0 3 3 3 0 0
0 0 3 3 3 0 0
0 0 0 0 0 0 0
``` | 848 |
<|im_start|>user
Developer: # 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 h... | 3,190 | [
"<note1>\n<description>Start by comparing the input and output grids to see which pixels change and which remain identical. If the same set of pixels is altered across examples, that set is the target of the transformation.</description>\n<example>Imagine a grid where a few pixels of color A are replaced while all ... | [{"input": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1], [1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1,... | [{"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], [1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0], [1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0], [1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0], [1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 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 0 0 0 0 0 0 0 0 0 0
7 7 7 7 7 7 0 0 0 7 7 7 7 0
7 0 0 0 0 7 0 0 0 7 0 0 7 0
7 0 0 0 0 7 0 0 0 7 7 7 7 0
7 7 7 7 7 7 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 7 7 7 7 0
0 0 0 1 1 1 1 0 0 7 0 0 7 0
0 0 0 1 1 1 1 1 0 7 7 7 7 0
0 0 0 1 1 1 1 1 0 0 0 0 0 0
0 0 0 1 ... | 2,486 |
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED) | 1,982 | ["<note1>\n<description>Find the single non-background color that forms the main object. When one co(...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, 8, 8, 8, 8,(...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,(...TRUNCATED) | barc_heavy | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | ```
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 5 5 5
5 5 5 5 5 5
``` | 1,278 |
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED) | 1,770 | ["<note1>\n<description>Isolate the object: many ARC tasks begin with a single non-background pixel (...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 1, 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, 4, 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 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 4 0 0 0 0 0 0 0\n0 0 4 0 0 (...TRUNCATED) | 1,066 |
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED) | 3,286 | ["<note1>\n<description>Identify the object by finding the color that appears as a contiguous region(...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,(...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) | "```\n1 1 1 1 1 1 1 1 1 1 1 1 1 1\n1 1 1 1 1 1 1 1 1 1 1 1 1 1\n1 1 1 1 1 1 1 1 1 1 1 1 1 1\n1 1 1 1(...TRUNCATED) | 2,582 |
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED) | 4,104 | ["<note1>\n<description>Look first for full rows or columns that are every cell the same color; thes(...TRUNCATED) | "[{\"input\": [[1, 1, 1, 6, 1, 1, 1, 6, 1, 1, 1], [1, 1, 1, 6, 0, 1, 1, 6, 1, 1, 1], [1, 1, 1, 6, 8,(...TRUNCATED) | "[{\"input\": [[9, 9, 9, 9, 8, 9, 9, 9, 9, 8, 9, 9, 9, 9, 8, 9, 9, 9, 9], [9, 6, 9, 9, 8, 9, 9, 6, 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 8 7 4 7 6 8 9 9 9 9 8 9 9 9 9\n9 9 9 9 8 6 7 7 6 8 9 9 9 9 8 9 9 9 9\n9 9 9 9 8 9 6 6 (...TRUNCATED) | 3,400 |
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED) | 1,598 | ["<note1>\n<description>Look for a one-to-one correspondence between input pixels and output cells b(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, (...TRUNCATED) | "[{\"input\": [[0, 0, 4, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 0, 0, 0, 0, 0, 0, 0, 7](...TRUNCATED) | barc_heavy | "You will be given some number of paired example inputs and outputs grids. The outputs were produced(...TRUNCATED) | ```
4 4 4 0 0
2 2 2 2 2
7 7 0 0 0
1 1 1 1 1
3 3 0 0 0
``` | 894 |
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED) | 2,370 | ["<note1>\n<description>Look for the small, compact objects that are being changed: each input conta(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 4, 8, 0, 0, 0, 0, 0, 0], [0, 0, 9, 4, 0, 0, 0,(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 0, 0, 0, 0, 2, 9, 0, 0], [2, 1, 0, 0, 0, 0, 1,(...TRUNCATED) | arc 2 | "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\n1 1 0 0 0 0 2 9 0 0\n2 1 0 0 0 0 1 6 0 0\n3 3 0 4 7 0 3 3 0 0\n3 3 0 8 4 (...TRUNCATED) | 1,666 |
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED) | 2,406 | ["<note1>\n<description>Separate the grid into individual objects by treating each contiguous non‑(...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0], [0, 5, 8, 5, 0, 0, 0], [0, 5, 8, 5, 0, 0, 0], [0, 8, 8, 8, 0, (...TRUNCATED) | "[{\"input\": [[0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 3, 2, 2, 0, 0, 0, 0, 0], [0, 3, 3, 2, 0, 0, 0, 0, 0](...TRUNCATED) | arc 2 | "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 2 3 3 0 0 0 0 0\n0 2 2 3 0 0 0 0 0\n0 2 3 3 0 0 0 0 0\n0 0 0 0 0 1 1 1 0\(...TRUNCATED) | 1,702 |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 2