rogermt commited on
Commit
394089f
·
verified ·
1 Parent(s): f990efe

Fix wrong target in entrypoint.py (row 7 corrected to match real ARC task 007bbfb7)

Browse files
Files changed (1) hide show
  1. scripts/entrypoint.py +2 -1
scripts/entrypoint.py CHANGED
@@ -32,6 +32,7 @@ def main():
32
  task = json.load(fh)
33
  else:
34
  # minimal built-in example if user passed 'example1'
 
35
  if args.task == "example1":
36
  task = {
37
  'name': 'example1',
@@ -44,7 +45,7 @@ def main():
44
  [7,7,7,7,7,7,7,7,7],
45
  [0,7,7,0,7,7,0,7,7],
46
  [0,0,0,0,7,7,0,7,7],
47
- [0,7,7,0,7,7,0,7,7],
48
  [0,0,0,0,7,7,0,7,7],
49
  ],
50
  'target_shape': (9,9)
 
32
  task = json.load(fh)
33
  else:
34
  # minimal built-in example if user passed 'example1'
35
+ # Corrected target from real ARC task 007bbfb7 (Kronecker self-similar)
36
  if args.task == "example1":
37
  task = {
38
  'name': 'example1',
 
45
  [7,7,7,7,7,7,7,7,7],
46
  [0,7,7,0,7,7,0,7,7],
47
  [0,0,0,0,7,7,0,7,7],
48
+ [0,0,0,7,7,7,7,7,7],
49
  [0,0,0,0,7,7,0,7,7],
50
  ],
51
  'target_shape': (9,9)