Spaces:
Configuration error
Configuration error
Add / refresh organization card
Browse files
README.md
CHANGED
|
@@ -1,10 +1,50 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
emoji: 🏆
|
| 4 |
-
colorFrom: green
|
| 5 |
-
colorTo: green
|
| 6 |
-
sdk: static
|
| 7 |
-
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# Precise Debugging Benchmarking (PDB)
|
| 6 |
+
|
| 7 |
+
📄 Paper *(coming soon)* ·
|
| 8 |
+
💻 [Code](https://github.com/Bill1235813/PDB) ·
|
| 9 |
+
🌐 [Project page](https://precise-debugging-benchmark.github.io/) ·
|
| 10 |
+
🏆 [Leaderboard](https://precise-debugging-benchmark.github.io/leaderboard.html)
|
| 11 |
+
|
| 12 |
+
**PDB** is an automatic pipeline that turns any coding dataset into a
|
| 13 |
+
*debugging* benchmark with fine-grained metrics. Beyond binary unit-test
|
| 14 |
+
scores, PDB evaluates a debugger with **edit-level precision** (did the model
|
| 15 |
+
touch only the lines it had to?) and **bug-level recall** (did it fix every
|
| 16 |
+
fault?). This rewards targeted fixes and penalizes the regeneration behavior
|
| 17 |
+
frontier LLMs often fall back on.
|
| 18 |
+
|
| 19 |
+
> Frontier models like GPT-5.1-Codex and DeepSeek-V3.2-Thinking top unit-test
|
| 20 |
+
> leaderboards (>76%) but score at or below 45% on precision: they pass tests
|
| 21 |
+
> by rewriting, not repairing. PDB makes that gap measurable.
|
| 22 |
+
|
| 23 |
+
## Released datasets
|
| 24 |
+
|
| 25 |
+
| Dataset | Size | Bug granularity | Notes |
|
| 26 |
+
|---|---|---|---|
|
| 27 |
+
| [PDB-Single](https://huggingface.co/datasets/Precise-Debugging-Benchmarking/PDB-Single) | 7,589 | single line | full initial pool before easy-case filtering |
|
| 28 |
+
| [PDB-Single-Hard](https://huggingface.co/datasets/Precise-Debugging-Benchmarking/PDB-Single-Hard) | 5,751 | single line | hard subset: tasks not easily solved by 7+ of 9 reference models |
|
| 29 |
+
| [PDB-Multi](https://huggingface.co/datasets/Precise-Debugging-Benchmarking/PDB-Multi) | 256 | 2–4 line blocks | multi-line extension on programs with ≥35 LOC; atomicity-filtered |
|
| 30 |
+
|
| 31 |
+
All three are derived from [BigCodeBench](https://huggingface.co/datasets/bigcode/bigcodebench)
|
| 32 |
+
and [LiveCodeBench](https://huggingface.co/datasets/livecodebench/execution),
|
| 33 |
+
sourced via the PDB pipeline, and evaluated with precision / recall / unit-test
|
| 34 |
+
pass rate.
|
| 35 |
+
|
| 36 |
+
## Citation
|
| 37 |
+
|
| 38 |
+
```
|
| 39 |
+
@inproceedings{zhu2026pdb,
|
| 40 |
+
title = {Precise Debugging Benchmark: Is Your Model Debugging or Regenerating?},
|
| 41 |
+
author = {Zhu, Wang Bill and Chai, Miaosen and Wang, Shangshang and Liu, Yejia and
|
| 42 |
+
Bian, Song and Dong, Honghua and Neiswanger, Willie and Jia, Robin},
|
| 43 |
+
booktitle = {Findings of the Association for Computational Linguistics: ACL 2026},
|
| 44 |
+
year = {2026},
|
| 45 |
+
}
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
## Contact
|
| 49 |
+
|
| 50 |
+
Questions / submissions: wangzhu@usc.edu, miaosenc@usc.edu.
|