neoneye commited on
Commit
1696093
1 Parent(s): b68366b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +162 -3
README.md CHANGED
@@ -1,3 +1,162 @@
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 symmetry version 23
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 transform symmetric images.
21
+
22
+ example count: 2-4.
23
+
24
+ test count: 1-2.
25
+
26
+ image size: 2-3.
27
+
28
+ symmetry types: hstack2, hstack3, vstack2, vstack3, grid2x2.
29
+
30
+ # Version 2
31
+
32
+ image size: 2-4.
33
+
34
+ # Version 3
35
+
36
+ Added `HSTACK4`, `VSTACK4`.
37
+
38
+ # Version 4
39
+
40
+ Added `HSTACK5`, `VSTACK5`.
41
+
42
+ # Version 5
43
+
44
+ Added `ImageSymmetrySquare`, so images can be rotated by 90 degrees, and flipped over the diagonals.
45
+
46
+ # Version 6
47
+
48
+ Only exercising `ImageSymmetrySquare` with `HSTACK2`, `VSTACK2`.
49
+
50
+ Added random padding around the input images, so the job is to extract the content.
51
+
52
+ # Version 7
53
+
54
+ Only exercising `ImageSymmetrySquare` with `GRID2X2`.
55
+
56
+ # Version 8
57
+
58
+ Only exercising `ImageSymmetrySquare` with `HSTACK3`, `VSTACK3`.
59
+
60
+ # Version 9
61
+
62
+ Only exercising `ImageSymmetrySquare` with `HSTACK4`, `HSTACK5`, `VSTACK4`, `VSTACK5`.
63
+
64
+ # Version 10
65
+
66
+ Only exercising `ImageSymmetrySquare` with all the pattern types enabled.
67
+
68
+ # Version 11
69
+
70
+ Only exercising `ImageSymmetrySquare` with `HSTACK4`, `VSTACK4`.
71
+
72
+ # Version 12
73
+
74
+ Only exercising `ImageSymmetrySquare` with `HSTACK5`, `VSTACK5`.
75
+
76
+ # Version 13
77
+
78
+ Only exercising `ImageSymmetrySquare` with all the pattern types enabled.
79
+
80
+ # Version 14
81
+
82
+ Enabled `ImageSymmetryRect`, and added padding.
83
+
84
+ Enabled `ImageSymmetrySquare`.
85
+
86
+ # Version 15
87
+
88
+ Focus only on the new `generate_task_with_symmetry_line`.
89
+
90
+ pattern size: 2-4.
91
+
92
+ padding size: 0-3.
93
+
94
+ # Version 16
95
+
96
+ Focus only on the new `generate_task_with_symmetry_line`.
97
+
98
+ pattern size: 2-5.
99
+
100
+ padding size: 0-4.
101
+
102
+ # Version 17
103
+
104
+ Focus only on the new `generate_task_with_symmetry_line`.
105
+
106
+ pattern size: 2-5.
107
+
108
+ padding size: 0-4.
109
+
110
+ Invert colors of pattern.
111
+
112
+ Invert colors of background and wall.
113
+
114
+ # Version 18
115
+
116
+ Focus only on the new `generate_task_with_symmetry_line`.
117
+
118
+ pattern size: 2-5.
119
+
120
+ padding size: 0-4.
121
+
122
+ Invert colors of pattern.
123
+
124
+ Invert colors of background and wall.
125
+
126
+ Sporadic insert decoy pixel inside the pattern that is either background color or wall color.
127
+
128
+ Random thickness of wall.
129
+
130
+ wall size: 1-2.
131
+
132
+ # Version 19
133
+
134
+ Enabled all the task generators.
135
+
136
+ Slightly smaller patterns for the `generate_task_with_symmetry_line`, since the big patterns seems to be something that the model struggles grokking.
137
+
138
+ # Version 20
139
+
140
+ Turned up parameters so the tasks have a length of just below 1024 context length. Previously I aimed for 512 tokens.
141
+
142
+ # Version 21
143
+
144
+ Focus only on the new `generate_task_with_symmetry_line`.
145
+
146
+ pattern size: 2-7.
147
+
148
+ padding size: 0-10.
149
+
150
+ wall size: 1-3.
151
+
152
+ # Version 22
153
+
154
+ Enabled all transformations.
155
+
156
+ Smaller images, so they can fit inside a context length 1024.
157
+
158
+ Earlier predictions added to some of the rows.
159
+
160
+ # Version 23
161
+
162
+ Even smaller images. The model struggles grokking the previous verison.