Add SWE-bench Verified adapter - #30
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds SWE-bench Verified dataset integration to CodeBench, replacing synthetic sample tasks with real repository-level tasks for benchmark runs. This PR is infrastructure only — it contains no agent automation and no SWE-bench evaluation results yet.
What's included
src/codebench/swebench_adapter.py): loadsSWE-bench/SWE-bench_Verifiedfrom Hugging Face, converts instances into the existingCodeTaskformat (no public API changes), and writes prediction files in the official SWE-bench harness format (instance_id,model_name_or_path,model_patch).scripts/prepare_swebench_sample.py): writes a small task sample (default 5 tasks;--limit,--difficulty,--outputfor 30/50-task runs later).scripts/create_swebench_predictions_template.py): generates a harness-compatible predictions JSONL with emptymodel_patchstubs.docs/swebench_experiment.md): full workflow — prepare sample → run agents → fill predictions → evaluate with the official harness → map results back into CodeBench metrics.Leakage prevention
The gold
patch,test_patch,FAIL_TO_PASS, andPASS_TO_PASSfields never reach agent-facing output:CodeTask.test_fileandCodeTask.reference_solutionhold placeholders, so a serialized task cannot leak the solution.agent_prompt_payload()).hidden_referenceblock for internal sanity checks; the generated sample/template files are gitignored.Testing
<15 min fix→easy …>4 hours→hard, unknown→medium), leakage checks, sampling limits, and official prediction format.🤖 Generated with Claude Code