This directory contains the per-task pass/fail data from the ATLAS V3.0 ablation study on LiveCodeBench (599 tasks). These are the raw traces behind the published 74.6% pass@1 result.
| Condition | Directory | Phases Active | Pass@1 | Tasks | Description |
|---|---|---|---|---|---|
| A | condition_a_baseline/ |
None | 54.9% (329/599) | 599 | Baseline: frozen Qwen3-14B, no V3 pipeline |
| B | condition_b_phase1/ |
Phase 1 | 67.3% (403/599) | 599 | +PlanSearch, DivSampling, Budget Forcing |
| C | condition_c_phase1_2/ |
Phase 1+2 | 67.3% (403/599) | 599 | +Blend-ASC, ReASC, S* tiebreaking |
| D | condition_d_phase1_3/ |
Phase 1+3 | 74.6% (447/599) | 599 | +PR-CoT Repair, Refinement Loop, Derivation Chains |
| E | condition_e_full/ |
All | Partial | 94 | Full pipeline (discontinued — OOM at scale) |
- Phase 1 (Constraint-Driven Generation): +12.4pp (54.9% → 67.3%)
- Phase 2 (Intelligent Compute): +0.0pp (67.3% → 67.3%) — no measurable improvement
- Phase 3 (Verified Iterative Refinement): +7.3pp (67.3% → 74.6%)
- Total V3 improvement: +19.7pp over baseline
Each condition directory contains:
condition_X/
├── summary.json # Aggregate results: pass_rate, total_tasks, timing
├── telemetry/
│ ├── v3_events.jsonl # Per-task V3 pipeline events
│ ├── plan_search_events.jsonl # PlanSearch constraint/plan details
│ ├── route_decisions.jsonl # Routing decisions per task
│ └── ... # Additional per-component telemetry
└── v3_lcb/
└── per_task/
├── task_001.json # Per-task result: passed, code, phase_solved, candidates
├── task_002.json
└── ... # 599 files per condition
{
"task_id": "livecodebench_v5_001",
"passed": true,
"code": "def solution()...",
"phase_solved": "phase1", // "phase1", "pr_cot", "refinement", "derivation", "none"
"candidates_generated": 3,
"total_tokens": 4521,
"total_time_ms": 12340.5,
"telemetry": {
"probe_sandbox_passed": false,
"adaptive_k": 3,
"plansearch_constraints": [...],
"candidate_energies": [...]
}
}All conditions used:
- Model: Qwen3-14B-Q4_K_M + Qwen3-0.6B-Q8_0 draft (speculative decoding)
- Dataset: LiveCodeBench v5 (599 tasks, bzantium mirror)
- Seeds: Fixed seed 42 for all conditions
- 1 seed per condition (k=3 candidates per task in Phase 1)
- Hardware: RTX 5060 Ti 16GB, single GPU
To reproduce condition D (74.6%):
cd /path/to/ATLAS
python benchmark/v3_runner.py \
--dataset livecodebench \
--selection-strategy lens \
--no-phase2 \
--run-id condition_d_reproductionTo reproduce condition A (baseline):
python benchmark/v3_runner.py \
--dataset livecodebench \
--baseline \
--run-id condition_a_reproductionimport json, glob
condition = "condition_d_phase1_3"
tasks = glob.glob(f"{condition}/v3_lcb/per_task/*.json")
passed = sum(1 for t in tasks if json.load(open(t)).get("passed", False))
total = len(tasks)
print(f"Pass@1: {passed}/{total} = {passed/total:.1%}")
# Expected output: Pass@1: 447/599 = 74.6%