Dataset Viewer
Auto-converted to Parquet Duplicate
prompt
stringlengths
1.53k
31.7k
responses
listlengths
16
16
abstraction_prompt
stringclasses
50 values
abstraction_prompt_length
int64
1.29k
4.79k
generated_abstractions
listlengths
16
16
train
stringclasses
50 values
test
stringclasses
50 values
source
stringclasses
4 values
answer
stringclasses
50 values
num_tokens
int64
588
4.08k
<|im_start|>user 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...
[ "``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```", "``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```", "``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```", "``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```", "``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0...
<|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,320
[ "<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pixel is usually the source of the transformation. Treat its color as the only color that will be placed elsewhere; everything else should remain background.</description>\n<example>Imagine a 5×5 grid with a lone red pi...
[{"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]], "output": [[4, 0, 0, 0, 4], [0, 4, 0, 4, 0], [0, 0, 4, 0, 0], [0, 4, 0, 4, 0], [4, 0, 0, 0, 4]]}, {"input": [[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]], "output": [[3, 0, 0, 0, 3],...
[{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 8], [0, 8, 0, 8, 0], [0, 0, 8, 0, 0], [0, 8, 0, 8, 0], [8, 0, 0, 0, 8]]}]
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
<|im_start|>user 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...
[ "Let's analyze the pattern from the examples and apply it to the test case.\n\n---\n\n### Step 1: Observe the Examples\n\nAll examples follow the same structure:\n\n- Input: A 5×5 grid with a single non-zero value (color) at the center (row 2, column 2).\n- Output: A symmetric pattern where the non-zero value (colo...
<|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,320
[ "<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pixel is usually the source of the transformation. Treat its color as the only color that will be placed elsewhere; everything else should remain background.</description>\n<example>Imagine a 5×5 grid with a lone red pi...
[{"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]], "output": [[4, 0, 0, 0, 4], [0, 4, 0, 4, 0], [0, 0, 4, 0, 0], [0, 4, 0, 4, 0], [4, 0, 0, 0, 4]]}, {"input": [[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]], "output": [[3, 0, 0, 0, 3],...
[{"input": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], "output": [[8, 0, 0, 0, 8], [0, 8, 0, 8, 0], [0, 0, 8, 0, 0], [0, 8, 0, 8, 0], [8, 0, 0, 0, 8]]}]
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["Let's analyze the pattern from the examples and apply it to the test input.\n\n---\n\n### Step 1: (...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["Let's analyze the pattern from the examples and apply it to the test case.\n\n---\n\n### Step 1: O(...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```","``` \n8 0 0 0 8\n0 8 0 8 0\n0 0(...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```","``` \n8 0 0 0 8\n0 8 0 8 0\n0 0(...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```","``` \n8 0 0 0 8\n0 8 0 8 0\n0 0(...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["Let's analyze the examples and determine the transformation rule.\n\n---\n\n### Step 1: Identify t(...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```","``` \n8 0 0 0 8\n0 8 0 8 0\n0 0(...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
"<|im_start|>user\nYou will be given some number of paired example inputs and outputs grids. The out(...TRUNCATED)
["``` \n8 0 0 0 8\n0 8 0 8 0\n0 0 8 0 0\n0 8 0 8 0\n8 0 0 0 8\n```","``` \n8 0 0 0 8\n0 8 0 8 0\n0 0(...TRUNCATED)
"<|im_start|>user\nDeveloper: # ARC HINT GENERATOR\n\n## Role & Goal\nYou are an expert ARC (Abstrac(...TRUNCATED)
1,320
["<note1>\n<description>Find the anchor: when a grid contains a single non-background pixel, that pi(...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)
"[{\"input\": [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 8, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]],(...TRUNCATED)
barc_heavy
``` 8 0 0 0 8 0 8 0 8 0 0 0 8 0 0 0 8 0 8 0 8 0 0 0 8 ```
616
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
2