Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,80 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- image-to-text
|
5 |
+
- text-to-image
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
pretty_name: simons ARC (abstraction & reasoning corpus) solve count version 6
|
9 |
+
size_categories:
|
10 |
+
- 10K<n<100K
|
11 |
+
configs:
|
12 |
+
- config_name: default
|
13 |
+
data_files:
|
14 |
+
- split: train
|
15 |
+
path: data.jsonl
|
16 |
+
---
|
17 |
+
|
18 |
+
# Version 1
|
19 |
+
|
20 |
+
ARC-AGI Tasks where the job is to count N number of pixels in the input, and in the output repeat a pattern N times.
|
21 |
+
|
22 |
+
example count: 3-4.
|
23 |
+
|
24 |
+
test count: 1-2.
|
25 |
+
|
26 |
+
input image size: 3-8.
|
27 |
+
|
28 |
+
output pattern image size: 1-3.
|
29 |
+
|
30 |
+
pixel count: 1-3.
|
31 |
+
|
32 |
+
I had a serious mistake in `number_of_positions` where I didn't deal with clashing xy coordinates, causing the pixel count to not match with the pattern count in the output.
|
33 |
+
|
34 |
+
# Version 2
|
35 |
+
|
36 |
+
input image size: 3-10.
|
37 |
+
|
38 |
+
pixel count: 1-4.
|
39 |
+
|
40 |
+
I had a serious mistake in `number_of_positions` where I didn't deal with clashing xy coordinates, causing the pixel count to not match with the pattern count in the output.
|
41 |
+
|
42 |
+
# Version 3
|
43 |
+
|
44 |
+
input image size: 3-12.
|
45 |
+
|
46 |
+
output pattern image size: 1-4.
|
47 |
+
|
48 |
+
pixel count: 1-5.
|
49 |
+
|
50 |
+
I had a serious mistake in `number_of_positions` where I didn't deal with clashing xy coordinates, causing the pixel count to not match with the pattern count in the output.
|
51 |
+
|
52 |
+
# Version 4
|
53 |
+
|
54 |
+
Fixed the `number_of_positions` code. So the input count and output count now should match.
|
55 |
+
|
56 |
+
input image size: 3-14.
|
57 |
+
|
58 |
+
output pattern image size: 1-5.
|
59 |
+
|
60 |
+
pixel count: 1-6.
|
61 |
+
|
62 |
+
# Version 5
|
63 |
+
|
64 |
+
Focus only on `generate_task_count_pixels_and_repeat_input_pattern`.
|
65 |
+
|
66 |
+
input image size: 4-8.
|
67 |
+
|
68 |
+
input pattern image size: 2.
|
69 |
+
|
70 |
+
pixel count: 1-3.
|
71 |
+
|
72 |
+
# Version 6
|
73 |
+
|
74 |
+
Focus only on `generate_task_count_pixels_and_repeat_input_pattern`.
|
75 |
+
|
76 |
+
input image size: 4-12.
|
77 |
+
|
78 |
+
input pattern image size: 2-3.
|
79 |
+
|
80 |
+
pixel count: 1-4.
|