--- license: apache-2.0 task_categories: - text-generation language: - en tags: - debugging - agent-trajectories - evaluation size_categories: - 1K.json` (per-defect records), `evaluation_summary.json`, `per_task_summary.json`. ## Reading these Solve rate is `final_test_passed`, not anything the model claims. Trajectory files carry `success`, which is **not** the solve metric — it requires the model to have called `done`, so an episode that hit the turn cap with the suite passing reads `success: false` and `final_test_passed: true`. One of the 90 SFT trajectories here is that case. Score from the run records; read the trajectories for behaviour. The gate arc is included as evidence for a caveat, not a result. v90 was chosen by stop-at-peak on that arc, and the arc ran on the pristine test split: v0 64.4 | v15 65.6 | v30 63.3 | v45 70.0 | v60 62.2 | v75 72.2 | v90 76.7 | v105 68.9 | v120 66.7 So v90's test figure is the argmax of nine noisy draws on the set it was then scored against. Cite the validation number, 75.9 / 93.1. ## Use ```python from huggingface_hub import snapshot_download path = snapshot_download("moofeez/llm-debugger-eval-transcripts", repo_type="dataset") ```