mindware commited on
Commit
1f58c6b
·
verified ·
1 Parent(s): 8c2fe75

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -37,6 +37,18 @@ This checkpoint is the primary CodeT5-based solver we used for the MindsAI @ Tuf
37
  - **Decoder-only pruning**: the original decoder depth (24) was reduced to 16 layers after experiments showed encoder pruning harmed sample efficiency, while decoder pruning could be recovered through extended training.
38
  - **Long-run TPU training**: training spanned roughly two years on a V4-64 TPU, made possible by Google’s TPU Research Cloud program.
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  ## ARC Data Formatting
41
 
42
  - ARC tasks ship as JSON where each `task_id` contains `train` pairs and `test` inputs; every grid is a rectangular list of lists with integers `0-9`. Dimensions follow the original 1×1–30×30 spec, though the evaluator accepts up to 50×50.
 
37
  - **Decoder-only pruning**: the original decoder depth (24) was reduced to 16 layers after experiments showed encoder pruning harmed sample efficiency, while decoder pruning could be recovered through extended training.
38
  - **Long-run TPU training**: training spanned roughly two years on a V4-64 TPU, made possible by Google’s TPU Research Cloud program.
39
 
40
+ 📚 ARC-Related Datasets & Frameworks
41
+ RE-ARC Link: https://github.com/michaelhodel/re-arc
42
+ Note: This is the repository from Michael Hodel, which procedurally generates examples for the 400 ARC training tasks. We also include RE-ARC eval and ARC 1.5 (also by Michael Hodel).
43
+ ConceptARC Link: https://github.com/victorvikram/ConceptARC
44
+ 1D-ARC (likely "ID ARC") Link: https://khalil-research.github.io/LLM4ARC/
45
+ ARC_gym
46
+ Sort-of-ARC
47
+ Andreas Koepf - Generated many tasks based upon the RE-ARC methodology using various foundation models. Additionally generated from a generator Andreas wrote based on the icecuber solution. It also includes extra tasks like predicting the solution graph.
48
+ Jack Cole - Wrote generators for 60-80 tasks. Many were inspired by ARC items. Others were large concept datasets (cellular automata, math equation derived boards).
49
+
50
+ There is a large amount of ARC-related tasks that are not solving for the board (like generating code, predicting various parameters or features related to the task). There are other non-ARC related tasks.
51
+
52
  ## ARC Data Formatting
53
 
54
  - ARC tasks ship as JSON where each `task_id` contains `train` pairs and `test` inputs; every grid is a rectangular list of lists with integers `0-9`. Dimensions follow the original 1×1–30×30 spec, though the evaluator accepts up to 50×50.