Datasets:
Tasks:
Other
Size:
n<1K
Tags:
software-engineering
bug-reproduction
fault-localization
automated-program-repair
debugging
benchmark
License:
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# AIFaultBench: A Benchmark of Real-World Faults in AI Software Systems
|
| 2 |
|
| 3 |
[](https://doi.org/10.5281/zenodo.21422606)
|
|
@@ -94,6 +125,24 @@ reproducible = [b for b in bugs if b["reproducible"]]
|
|
| 94 |
agentic = [b for b in bugs if b["domain"] == "Agentic"]
|
| 95 |
```
|
| 96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
For a complete walkthrough, see `consume_dataset.ipynb`.
|
| 98 |
|
| 99 |
---
|
|
@@ -130,6 +179,7 @@ Together, these provide a fully executable reproduction package suitable for eva
|
|
| 130 |
|
| 131 |
## License
|
| 132 |
|
| 133 |
-
The reproduction scripts, metadata, and benchmark packaging are released under
|
|
|
|
| 134 |
|
| 135 |
Each original bug report and source repository remains under its respective upstream license.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: AIFaultBench
|
| 3 |
+
license: cc-by-4.0
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
- code
|
| 7 |
+
size_categories:
|
| 8 |
+
- n<1K
|
| 9 |
+
task_categories:
|
| 10 |
+
- other
|
| 11 |
+
tags:
|
| 12 |
+
- software-engineering
|
| 13 |
+
- bug-reproduction
|
| 14 |
+
- fault-localization
|
| 15 |
+
- automated-program-repair
|
| 16 |
+
- debugging
|
| 17 |
+
- benchmark
|
| 18 |
+
- machine-learning
|
| 19 |
+
- deep-learning
|
| 20 |
+
- llm-infrastructure
|
| 21 |
+
- agentic-ai
|
| 22 |
+
- reinforcement-learning
|
| 23 |
+
- msr
|
| 24 |
+
- mining-software-repositories
|
| 25 |
+
configs:
|
| 26 |
+
- config_name: default
|
| 27 |
+
data_files:
|
| 28 |
+
- split: train
|
| 29 |
+
path: index.csv
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
# AIFaultBench: A Benchmark of Real-World Faults in AI Software Systems
|
| 33 |
|
| 34 |
[](https://doi.org/10.5281/zenodo.21422606)
|
|
|
|
| 125 |
agentic = [b for b in bugs if b["domain"] == "Agentic"]
|
| 126 |
```
|
| 127 |
|
| 128 |
+
The index is also exposed through the Hugging Face dataset viewer:
|
| 129 |
+
|
| 130 |
+
```python
|
| 131 |
+
from datasets import load_dataset
|
| 132 |
+
|
| 133 |
+
index = load_dataset("mehilshah/MSR-MiningChallenge-2027", split="train")
|
| 134 |
+
```
|
| 135 |
+
|
| 136 |
+
Note that `bug_id` is a zero-padded three-digit string (`001`, …, `774`) that names the
|
| 137 |
+
directory under `bugs/`. The CSV loader parses it as an integer, so pad it back before
|
| 138 |
+
building a path:
|
| 139 |
+
|
| 140 |
+
```python
|
| 141 |
+
path = f"bugs/{int(row['bug_id']):03d}"
|
| 142 |
+
```
|
| 143 |
+
|
| 144 |
+
Loading `index.json` directly preserves the identifier as a string.
|
| 145 |
+
|
| 146 |
For a complete walkthrough, see `consume_dataset.ipynb`.
|
| 147 |
|
| 148 |
---
|
|
|
|
| 179 |
|
| 180 |
## License
|
| 181 |
|
| 182 |
+
The reproduction scripts, metadata, and benchmark packaging are released under
|
| 183 |
+
[CC BY 4.0](LICENSE).
|
| 184 |
|
| 185 |
Each original bug report and source repository remains under its respective upstream license.
|