CoolFace
Datasetpublic

nebius/SWE-rebench-V2

SWE-rebench-V2 Dataset Summary SWE-rebench-V2 is a curated dataset of software-engineering tasks derived from real GitHub issues and pull requests. The dataset contains 32,079 samples covering Python, Go, TypeScript, JavaScript, Rust, Java, PHP, Kotlin, Julia, Elixir, Scala, Swift, Dart, C, C++, C#, R, Clojure, OCaml, and Lua. For log parser functions, base Dockerfiles, and the prompts used, please see https://github.com/SWE-rebench/SWE-rebench-V2The detailed… See the full description on the dataset page: https://huggingface.co/datasets/nebius/SWE-rebench-V2.

sourceHugging Facecc-by-4.0updated 4mo agoView on Hugging Face
61likes111kdownloads
Dataset Card

SWE-rebench-V2

Dataset Summary

SWE-rebench-V2 is a curated dataset of software-engineering tasks derived from real GitHub issues and pull requests. The dataset contains 32,079 samples covering Python, Go, TypeScript, JavaScript, Rust, Java, PHP, Kotlin, Julia, Elixir, Scala, Swift, Dart, C, C++, C#, R, Clojure, OCaml, and Lua. For log parser functions, base Dockerfiles, and the prompts used, please see https://github.com/SWE-rebench/SWE-rebench-V2 The detailed technical report is available at “SWE-rebench V2: Language-Agnostic SWE Task Collection at Scale”.

Quick Start

python
from datasets import load_dataset

ds = load_dataset("nebius/SWE-rebench-V2", split="train")
print(len(ds))  # 32079

Dataset Structure

FieldTypeDescription
instance_idstringUnique identifier for the instance
repostringGitHub repository in owner/repo format
base_commitstringGit commit SHA of the base before the fix
patchstringThe gold patch that resolves the issue
test_patchstringDiff adding or modifying tests that verify the fix
problem_statementstringIssue description the patch addresses
pr_descriptionstringFull pull request description
created_atint64Unix timestamp (milliseconds) of the issue/PR creation
image_namestringDocker image name used for the evaluation environment
languagestringPrimary programming language of the repository
interfacestringDescription of the code interface changed by the patch
licensestringSPDX license identifier of the repository
FAIL_TO_PASSlist[string]Test IDs that fail before the patch and pass after
PASS_TO_PASSlist[string]Test IDs that pass both before and after the patch
install_configstructConfiguration needed to reproduce the test environment
metastructMetadata and LLM-generated quality annotations

License

The dataset is licensed under the Creative Commons Attribution 4.0 license. However, please respect the license of each specific repository on which a particular instance is based. To facilitate this, the license of each repository at the time of the commit is provided for every instance.

Citation

bibtex
@misc{badertdinov2026swerebenchv2languageagnosticswe,
      title={SWE-rebench V2: Language-Agnostic SWE Task Collection at Scale}, 
      author={Ibragim Badertdinov and Maksim Nekrashevich and Anton Shevtsov and Alexander Golubev},
      year={2026},
      eprint={2602.23866},
      archivePrefix={arXiv},
      primaryClass={cs.SE},
      url={https://arxiv.org/abs/2602.23866}, 
}