File size: 6,453 Bytes
3ce871d abf485a d83abbd abf485a ccc2639 d83abbd 3ce871d abf485a ccc2639 d1976f5 cf042f0 ba1f6c0 d1976f5 ba1f6c0 ccc2639 d83abbd abf485a d83abbd abf485a d83abbd abf485a d83abbd abf485a d83abbd abf485a 6ed90a1 abf485a 6ed90a1 18850b1 6ed90a1 abf485a d83abbd abf485a d83abbd abf485a d83abbd abf485a d83abbd 236f6ba d83abbd abf485a d83abbd abf485a d83abbd abf485a d83abbd abf485a d83abbd abf485a d83abbd 6ed90a1 d83abbd abf485a d83abbd abf485a d83abbd abf485a ccc2639 d1976f5 ccc2639 ba1f6c0 ccc2639 d83abbd abf485a ccc2639 | 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 | ---
language:
- en
pretty_name: Active-SWE
task_categories:
- other
tags:
- code
- bug-fixing
- code-review
- software-engineering
- docker
- arxiv:2608.04682
configs:
- config_name: main
data_files:
- split: main
path: data/Active-SWE.parquet
- split: extend
path: data/Active-SWE-Extend.parquet
---
# Active-SWE
<p align="center">
<img src="https://huggingface.co/datasets/XLearning-SCU/Active-SWE/resolve/main/assets/Active-SWE.png" alt="Active-SWE" width="760">
</p>
<p align="center">
<a href="https://arxiv.org/abs/2608.04682"><b>Paper</b></a> |
<a href="https://hbinli.github.io/Active-SWE/"><b>Project Page</b></a> |
<a href="https://huggingface.co/spaces/XLearning-SCU/Active-SWE-Leaderboard"><b>HF Space</b></a> |
<a href="https://github.com/XLearning-SCU/Active-SWE"><b>Code</b></a> |
<a href="https://huggingface.co/datasets/XLearning-SCU/Active-SWE"><b>Dataset</b></a> |
<a href="https://hub.docker.com/r/biningbin/active-swe"><b>Docker Images</b></a>
</p>
Active-SWE is a proactive bug-fixing benchmark for evaluating whether a coding
model can find and repair functional bugs from a set of files selected for
review. It is designed for local Docker-based evaluation and is different from
issue-based benchmarks that provide a complete issue description as the main
input.
The benchmark evaluates two kinds of instances:
- **simple**: an instance centered on one source bug.
- **hard**: an instance that combines multiple source bugs and supports
multi-bug validation.
The `set` column identifies the instance type. The same `instance_id` can occur
once in each set, so use `(set, instance_id)` as the stable key when combining
the two sets.
## Files
This dataset repository contains one configuration with two previewable splits:
| Split | File | Rows | simple | hard | Use |
| --- | --- | ---: | ---: | ---: | --- |
| `main` | `data/Active-SWE.parquet` | 400 | 300 | 100 | Main evaluation set |
| `extend` | `data/Active-SWE-Extend.parquet` | 1663 | 1411 | 252 | Extended evaluation set |
The extended set contains the larger evaluation pool. The main set is intended
for a smaller, faster evaluation run.
## Data fields
| Field | Description |
| --- | --- |
| `instance_id` | Public instance identifier |
| `repo` | Source repository in `owner/name` form |
| `base_commit` | Repository commit used as the evaluation base |
| `patch` | Ground-truth patch for oracle and evaluation use |
| `set` | `simple` or `hard` |
| `language` | Main programming language |
| `merged_at` | Source change timestamp, when available |
| `image` | Docker image used by the evaluation harness |
| `files_pending_review` | Files provided to the proactive review stage |
| `major_category` | Bug taxonomy labels |
| `test_framework` | Test framework used by the instance |
| `log_parser` | Harness log parser for the test output |
| `template` | Template used to render the evaluation command |
| `eval_script` | Instance-specific evaluation script |
| `FAIL_TO_PASS` | Tests expected to pass after the ground-truth fix |
| `PASS_TO_PASS` | Tests expected to remain passing |
| `source_f2p` | Source-level F2P mapping, mainly used for hard instances |
| `source_p2p` | Source-level P2P mapping, mainly used for hard instances |
| `edit_hunks` | Changed-file and hunk metadata |
The Parquet files include oracle and evaluation fields because they are needed
by the harness to calculate the benchmark metrics. They should not be exposed
as model input during generation. In particular, `patch`, `eval_script`,
`FAIL_TO_PASS`, `PASS_TO_PASS`, and source-level oracle fields are evaluation
inputs, not prompt fields for the proactive review model.
## Images
The `image` column contains the exact Docker image reference used by the
release harness. Images are hosted in the public Docker Hub repository
`docker.io/biningbin/active-swe` and are tagged with the `simple-` or `hard-`
prefix. The dataset does not contain image layers; pull the referenced image
before running an evaluation.
For example:
```bash
docker pull docker.io/biningbin/active-swe:simple-pylint-dev__pylint-5417
```
## Loading the dataset
```python
from datasets import load_dataset
dataset = load_dataset("XLearning-SCU/Active-SWE", name="main")
main_data = dataset["main"]
extend_data = dataset["extend"]
```
Or download one file with the Hugging Face CLI:
```bash
hf download XLearning-SCU/Active-SWE data/Active-SWE.parquet \
--repo-type dataset --local-dir ./active_swe_data
```
## Evaluation protocol
The release harness runs the benchmark stages locally with Docker. The model
first receives the files pending review and generates a code patch. Later
stages can generate and validate tests, and the harness runs the rendered
evaluation scripts inside the referenced image.
The primary paper-facing metrics are:
```text
LR | LP | Resolved | Count | TV | Revealed
```
The denominator is the number of rows supplied to the corresponding run. The
release harness preserves one output row per input instance, including rows
that fail during generation or evaluation.
## Paper
**[Active-SWE: Benchmarking Coding Agents for Proactive Bug Fixing without Issue Reports](https://arxiv.org/abs/2608.04682)**
Haobin Li, Ping Deng, Weizhong Qian, Liang Jiang, Zhenyu Huang, Mouxing Yang, and Xi Peng.
Active-SWE evaluates coding agents on proactively discovering and fixing bugs without issue-report guidance. The benchmark contains 1,663 tasks across six bug categories and eight programming languages, including both single-bug and multi-bug evaluation settings.
- Project page: https://hbinli.github.io/Active-SWE/
- Paper: https://arxiv.org/abs/2608.04682
- PDF: https://arxiv.org/pdf/2608.04682
- Code: https://github.com/XLearning-SCU/Active-SWE
- Docker images: https://hub.docker.com/r/biningbin/active-swe
## Citation and source licenses
Please cite the Active-SWE paper when using this dataset:
```bibtex
@article{li2026activeswe,
title={Active-SWE: Benchmarking Coding Agents for Proactive Bug Fixing without Issue Reports},
author={Li, Haobin and Deng, Ping and Qian, Weizhong and Jiang, Liang and Huang, Zhenyu and Yang, Mouxing and Peng, Xi},
journal={arXiv preprint arXiv:2608.04682},
year={2026}
}
```
The source repositories represented in the benchmark retain their respective
licenses; users are responsible for complying with those licenses when
inspecting or redistributing source code and patches.
|