File size: 20,385 Bytes
9a889f8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | """
SOAR Program Synthesis Evaluation for ARC-AGI-2
Uses julien31/Soar-qwen-7b to solve ARC tasks via program synthesis.
Exact prompt format from SOAR repository (flowersteam/SOAR).
"""
import os
import sys
import json
import time
import copy
import random
import traceback
from typing import List, Dict, Tuple, Optional, Any
from collections import defaultdict, Counter
import numpy as np
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from datasets import load_dataset
# ============================================================
# SOAR Prompt Format (exact replication from soar/prompt.py)
# ============================================================
ADDITIONAL_INFO = (
"The number in the input grid can be mapped to the following colors: "
"0:Black; 1:Blue; 2:Red; 3:Green; 4:Yellow; 5:Grey; 6:Pink; "
"7:Orange; 8:Purple; 9:Brown\n"
)
def grid_to_numpy_str(grid: List[List[int]]) -> str:
"""Format grid in numpy repr mode (default SOAR format)."""
return str(np.array(grid))
def format_task_soar(task: Dict) -> str:
"""Format ARC task in SOAR format."""
parts = ["# Task to solve:"]
for i, pair in enumerate(task["train"]):
inp = pair["input"]
out = pair["output"]
h_in, w_in = len(inp), len(inp[0])
h_out, w_out = len(out), len(out[0])
parts.append(f"## Input {i+1} (grid shape: {h_in} by {w_in}):")
parts.append(grid_to_numpy_str(inp))
parts.append(f"## Output {i+1} (grid shape: {h_out} by {w_out}):")
parts.append(grid_to_numpy_str(out))
# Test input(s)
for i, test_pair in enumerate(task["test"]):
inp = test_pair["input"]
h, w = len(inp), len(inp[0])
parts.append(f"## Test Input {i+1} (grid shape: {h} by {w}):")
parts.append(grid_to_numpy_str(inp))
return "\n".join(parts)
def get_sampling_prompt(task: Dict) -> str:
"""Build the full sampling prompt for SOAR."""
task_str = format_task_soar(task)
user_msg = (
"You are an AI assistant specialized in solving Abstract Reasoning Corpus "
"(ARC-AGI) tasks by generating Python code.\n"
"Your goal is to analyze input-output grid pairs. The outputs were produced "
"by applying a transformation rule to the inputs. Implement the transformation "
"rules as a Python function.\n"
"You should only write the implemented the transformation in code.\n"
"You must write code in triple backticks (```python and then ```). "
"You must write a function called `transform` which takes a single argument, "
"the input grid as `list[list[int]]`, and returns the transformed grid "
"(also as `list[list[int]]`).\n"
"You should make sure that you implement a version of the transformation "
"that works in general (at least for all given input-output pairs and test input pairs).\n"
f"{ADDITIONAL_INFO}\n"
"Now, solve the following ARC-AGI task:\n\n"
f"{task_str}"
)
return user_msg
def get_refinement_prompt(task: Dict, previous_code: str,
execution_results: List[Dict]) -> str:
"""Build refinement prompt for SOAR."""
task_str = format_task_soar(task)
# Format previous implementation results
n_correct = sum(1 for r in execution_results if r.get("correct", False))
n_total = len(execution_results)
prev_impl_parts = [
f"```python\n{previous_code}\n```",
f"This implementation of transform function correctly worked on {n_correct}/{n_total} train input-output pairs.",
"Detailed results:"
]
incorrect_outputs = []
for i, result in enumerate(execution_results):
if result.get("is_test", False):
out_str = grid_to_numpy_str(result["output"]) if result.get("output") else "EXECUTION ERROR"
prev_impl_parts.append(
f"## Output Test {i+1} computed by `transform` (we don't know if it is correct or not)\n"
f"The execution gave the following results:\n{out_str}"
)
elif result.get("correct", False):
prev_impl_parts.append(f"## Output {i+1} computed by `transform` is correct.")
else:
out_str = grid_to_numpy_str(result["output"]) if result.get("output") else "EXECUTION ERROR"
h = len(result["output"]) if result.get("output") else "?"
w = len(result["output"][0]) if result.get("output") and result["output"] else "?"
prev_impl_parts.append(
f"## Output {i+1} computed by `transform` is incorrect.\n"
f"The execution gave the following results (grid shape: {h} by {w}):\n{out_str}"
)
incorrect_outputs.append(f"Output {i+1}")
if incorrect_outputs:
prev_impl_parts.append(
f"\nThe previous code give incorrect output for: {', '.join(incorrect_outputs)} "
"Now, you need to fix the code to produce correct output for all inputs."
)
previous_implementation = "\n".join(prev_impl_parts)
user_msg = (
"You are an AI assistant specialized in solving Abstract Reasoning Corpus "
"(ARC-AGI) tasks by repairing Python code implementations.\n"
"Your goal is to analyze input-output grid pairs. The outputs were produced "
"by applying a transformation rule to the inputs.\n"
"You will be given a python function `transform` that was supposed to implement "
"the transformation rule, but it is not working correctly for all inputs.\n"
"You role is to fix this `transform` function.\n\n"
"Your solution should be:\n"
"- Accurate: Correctly fix the transformation for all given inputs so they give "
"correct outputs as provided (it should also work for all test inputs)\n"
"- Comprehensive: Handles all possible input scenarios\n"
"- Well-structured: Uses clear, readable, and efficient code\n\n"
f"{ADDITIONAL_INFO}\n"
f"**Now, repair the following ARC-AGI task implementation:**\n\n"
f"{task_str}\n\n"
f"Previous implementation:\n{previous_implementation}"
)
return user_msg
# ============================================================
# Code extraction
# ============================================================
def extract_transform_code(text: str) -> Optional[str]:
"""Extract Python transform function from LLM output (SOAR style)."""
# Try ```python blocks
if "```python" in text:
parts = text.split("```python")
for part in parts[1:]:
end = part.find("```")
if end != -1:
code = part[:end].strip()
else:
code = part.strip()
if "def transform" in code:
return code
if "```" in text:
parts = text.split("```")
for i in range(1, len(parts), 2):
code = parts[i].strip()
if code.startswith("python\n"):
code = code[7:]
if "def transform" in code:
return code
# Try direct extraction
if "def transform" in text:
start = text.index("def transform")
lines = text[start:].split("\n")
func_lines = [lines[0]]
for line in lines[1:]:
if line.strip() and not line[0].isspace() and not line.startswith("#"):
if line.startswith("def ") or line.startswith("class ") or line.startswith("```"):
break
func_lines.append(line)
return "\n".join(func_lines).rstrip()
return None
# ============================================================
# Safe execution
# ============================================================
def safe_execute(code: str, input_grid: List[List[int]], timeout_sec: float = 5.0) -> Optional[List[List[int]]]:
"""Execute transform function safely."""
try:
# Add common imports
full_code = "import numpy as np\nfrom collections import Counter, defaultdict\nimport copy\n" + code
namespace = {}
exec(full_code, namespace)
if "transform" not in namespace:
return None
result = namespace["transform"](copy.deepcopy(input_grid))
if not isinstance(result, (list, np.ndarray)):
return None
if isinstance(result, np.ndarray):
result = result.tolist()
if len(result) == 0:
return None
# Validate
for row in result:
if not isinstance(row, (list, np.ndarray)):
return None
if isinstance(row, np.ndarray):
row = row.tolist()
for cell in row:
if not isinstance(cell, (int, float, np.integer)):
return None
result = [[int(c) for c in (r.tolist() if isinstance(r, np.ndarray) else r)] for r in result]
return result
except Exception:
return None
def evaluate_code_on_task(code: str, task: Dict) -> Tuple[float, List[Dict], Optional[List[List[int]]]]:
"""
Evaluate code on all training pairs and test input.
Returns (accuracy, execution_results, test_output).
"""
results = []
n_correct = 0
for pair in task["train"]:
pred = safe_execute(code, pair["input"])
correct = pred is not None and grids_equal(pred, pair["output"])
if correct:
n_correct += 1
results.append({
"output": pred,
"correct": correct,
"is_test": False,
})
accuracy = n_correct / len(task["train"]) if task["train"] else 0
# Test output
test_output = None
if task.get("test"):
test_output = safe_execute(code, task["test"][0]["input"])
results.append({
"output": test_output,
"correct": None, # We don't know ground truth
"is_test": True,
})
return accuracy, results, test_output
def grids_equal(g1, g2):
if g1 is None or g2 is None:
return False
if len(g1) != len(g2):
return False
for r1, r2 in zip(g1, g2):
if len(r1) != len(r2):
return False
if list(r1) != list(r2):
return False
return True
# ============================================================
# Main SOAR evaluation
# ============================================================
def solve_task_soar(task: Dict, model, tokenizer,
n_samples: int = 30, n_refinements: int = 20,
temperature: float = 0.8) -> List[List[List[int]]]:
"""
Solve a single ARC task using SOAR-style program synthesis.
1. Sample n_samples programs
2. Evaluate each on training pairs
3. Refine promising ones
4. Weighted majority vote → top-2
"""
# Phase 1: Sample programs
sampling_prompt = get_sampling_prompt(task)
messages = [{"role": "user", "content": sampling_prompt}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
programs = [] # List of (code, accuracy, test_output)
for i in range(n_samples):
try:
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=8192)
inputs = {k: v.to(model.device) for k, v in inputs.items()}
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=2048,
temperature=temperature,
top_p=0.95,
min_p=0.05,
do_sample=True,
pad_token_id=tokenizer.eos_token_id,
repetition_penalty=1.05,
)
response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True)
code = extract_transform_code(response)
if code is None:
continue
accuracy, exec_results, test_output = evaluate_code_on_task(code, task)
programs.append((code, accuracy, test_output, exec_results))
# Early stop if we find a perfect program
if accuracy == 1.0:
print(f" Found perfect program at sample {i+1}")
break
except Exception as e:
continue
# Phase 2: Refine promising programs
# Select programs to refine (REX-style: mix best + random)
candidates_to_refine = []
if programs:
# Sort by accuracy
sorted_progs = sorted(programs, key=lambda x: -x[1])
# Top programs + random selection
candidates_to_refine = sorted_progs[:5]
if len(sorted_progs) > 5:
candidates_to_refine += random.sample(sorted_progs[5:], min(3, len(sorted_progs)-5))
for j, (code, acc, _, exec_results) in enumerate(candidates_to_refine):
if acc == 1.0:
continue # Already perfect
for r in range(min(3, n_refinements)): # 3 refinement attempts per program
try:
repair_prompt = get_refinement_prompt(task, code, exec_results)
messages = [{"role": "user", "content": repair_prompt}]
repair_text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(repair_text, return_tensors="pt", truncation=True, max_length=8192)
inputs = {k: v.to(model.device) for k, v in inputs.items()}
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=2048,
temperature=0.7,
top_p=0.95,
do_sample=True,
pad_token_id=tokenizer.eos_token_id,
)
response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True)
new_code = extract_transform_code(response)
if new_code is None:
continue
new_acc, new_exec, new_test = evaluate_code_on_task(new_code, task)
programs.append((new_code, new_acc, new_test, new_exec))
if new_acc == 1.0:
print(f" Found perfect program via refinement")
break
except Exception:
continue
# Phase 3: Weighted majority vote
vote_scores = defaultdict(float)
for code, accuracy, test_output, _ in programs:
if test_output is None:
continue
key = tuple(tuple(row) for row in test_output)
# SOAR scoring: count + 1000 × accuracy
vote_scores[key] += 1 + 1000 * accuracy
if not vote_scores:
return []
sorted_votes = sorted(vote_scores.items(), key=lambda x: -x[1])
results = []
for key, score in sorted_votes[:2]:
results.append([list(row) for row in key])
return results
def main():
print("=" * 60)
print("SOAR Program Synthesis for ARC-AGI-2")
print("=" * 60)
# Load model
model_id = "julien31/Soar-qwen-7b"
print(f"\nLoading model: {model_id}")
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
model.eval()
print("Model loaded!")
# Load ARC-AGI-2 data
print("\nLoading ARC-AGI-2 training data...")
ds = load_dataset("arc-agi-community/arc-agi-2", split="train")
tasks = []
for row in ds:
task = {"train": row["fewshots"], "test": row["question"]}
tasks.append(task)
print(f"Loaded {len(tasks)} tasks")
# Also load ARC-AGI-1 eval for benchmarking
print("Loading ARC-AGI-1 evaluation data...")
ds_v1 = load_dataset("lordspline/arc-agi", split="evaluation")
tasks_v1 = []
for row in ds_v1:
task = {"train": row["train"], "test": row["test"]}
tasks_v1.append(task)
print(f"Loaded {len(tasks_v1)} ARC-AGI-1 eval tasks")
# Configuration
N_SAMPLES = 30 # Programs per task
N_REFINEMENTS = 15 # Refinement budget per task
EVAL_SUBSET = 100 # Evaluate on first N tasks for speed
# Evaluate on ARC-AGI-2 (first EVAL_SUBSET tasks)
print(f"\n--- Evaluating on ARC-AGI-2 (first {EVAL_SUBSET} tasks) ---")
correct_v2 = 0
attempted_v2 = 0
start_time = time.time()
for i in range(min(EVAL_SUBSET, len(tasks))):
task = tasks[i]
gt = task["test"][0].get("output")
elapsed = time.time() - start_time
print(f"\n[{i+1}/{EVAL_SUBSET}] Task {i} (elapsed: {elapsed:.0f}s)")
try:
predictions = solve_task_soar(
task, model, tokenizer,
n_samples=N_SAMPLES,
n_refinements=N_REFINEMENTS,
temperature=0.8
)
if gt is not None:
attempted_v2 += 1
for pred in predictions:
if grids_equal(pred, gt):
correct_v2 += 1
print(f" ✓ CORRECT!")
break
else:
if predictions:
print(f" ✗ Wrong ({len(predictions)} candidates)")
else:
print(f" ✗ No predictions")
# Print running accuracy
if attempted_v2 > 0:
print(f" Running: {correct_v2}/{attempted_v2} = {correct_v2/attempted_v2*100:.1f}%")
except Exception as e:
print(f" ERROR: {e}")
traceback.print_exc()
total_time = time.time() - start_time
print(f"\n{'='*60}")
print(f"ARC-AGI-2 Results:")
print(f" Correct: {correct_v2}/{attempted_v2}")
print(f" Pass@2: {correct_v2/attempted_v2*100:.2f}%" if attempted_v2 > 0 else " N/A")
print(f" Time: {total_time:.0f}s ({total_time/EVAL_SUBSET:.1f}s/task)")
print(f"{'='*60}")
# Also quick eval on ARC-AGI-1
print(f"\n--- Evaluating on ARC-AGI-1 (first {min(50, len(tasks_v1))} tasks) ---")
correct_v1 = 0
attempted_v1 = 0
for i in range(min(50, len(tasks_v1))):
task = tasks_v1[i]
gt = task["test"][0].get("output")
print(f"[{i+1}/50] Task {i}", end="")
try:
predictions = solve_task_soar(
task, model, tokenizer,
n_samples=20,
n_refinements=10,
temperature=0.8
)
if gt is not None:
attempted_v1 += 1
for pred in predictions:
if grids_equal(pred, gt):
correct_v1 += 1
print(f" ✓", end="")
break
else:
print(f" ✗", end="")
print(f" ({correct_v1}/{attempted_v1})" if attempted_v1 > 0 else "")
except Exception as e:
print(f" ERROR: {e}")
print(f"\nARC-AGI-1 Results: {correct_v1}/{attempted_v1} = {correct_v1/attempted_v1*100:.2f}%" if attempted_v1 > 0 else "N/A")
# Push results
results = {
"arc_agi_2": {"correct": correct_v2, "total": attempted_v2},
"arc_agi_1": {"correct": correct_v1, "total": attempted_v1},
"config": {
"n_samples": N_SAMPLES,
"n_refinements": N_REFINEMENTS,
"model": model_id,
}
}
with open("/app/results.json", "w") as f:
json.dump(results, f, indent=2)
print(f"\nResults saved to /app/results.json")
if __name__ == "__main__":
main()
|