|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project are documented here. The format is based on |
| 4 | +[Keep a Changelog](https://keepachangelog.com/) and the project aims to follow |
| 5 | +[Semantic Versioning](https://semver.org/). |
| 6 | + |
| 7 | +## [0.2.0] — Research infrastructure release |
| 8 | + |
| 9 | +Turns the single-paper script into a reusable, extensible benchmark platform. |
| 10 | + |
| 11 | +### Added |
| 12 | +- **Installable package** `featfuse` with a `featfuse` command-line interface |
| 13 | + (`run`, `ablate`, `importance`, `list`, `info`) and a plugin **registry** for |
| 14 | + features, fusion strategies, models and datasets. |
| 15 | +- **11 engineered features** across lexical, structural and execution families |
| 16 | + (generalising the paper's single execution-similarity feature). Features are |
| 17 | + pairwise, deterministic and reproducible without a JVM. |
| 18 | +- **5 neural fusion strategies**: `concat` (the paper's design), `gated`, |
| 19 | + `attention`, `residual`, `film`. The classification head now accepts an |
| 20 | + arbitrary feature vector + a swappable fusion module. |
| 21 | +- **Encoders**: HuggingFace wrapper (GraphCodeBERT/CodeBERT/UniXcoder/…) plus a |
| 22 | + dependency-free `ToyEncoder` so the pipeline runs without GPUs or downloads. |
| 23 | +- **Full metric suite**: accuracy, precision, recall, F1, MCC, balanced accuracy, |
| 24 | + ROC-AUC, PR-AUC, Brier score and Expected Calibration Error. |
| 25 | +- **Statistics**: bootstrap confidence intervals, McNemar's test and paired |
| 26 | + bootstrap difference tests. |
| 27 | +- **Automatic ablation studies** (leave-one-out + single-feature) and |
| 28 | + **feature importance** (permutation + native). |
| 29 | +- **Auto-generated outputs**: Markdown + LaTeX (booktabs) tables, publication-quality |
| 30 | + figures (calibration, metric comparison, feature correlation) and a `REPORT.md`. |
| 31 | +- **Reproducibility**: deterministic seeding and a `manifest.json` per run recording |
| 32 | + seed, config hash, git commit, platform and library versions. |
| 33 | +- **Tooling**: tests (pytest), GitHub Actions CI (Py 3.9–3.12), Dockerfile, Makefile, |
| 34 | + issue/PR templates, `CITATION.cff`/`CITATION.bib`, and how-to documentation. |
| 35 | + |
| 36 | +### Fixed |
| 37 | +- The runner no longer ignores the published fixed splits and re-splits randomly; |
| 38 | + splits are loaded deterministically and *enriched* with the precomputed execution |
| 39 | + feature that the split files omitted. |
| 40 | +- Removed the hard-coded Windows dataset path; data location is configuration-driven. |
| 41 | + |
| 42 | +### Changed |
| 43 | +- The original training script and notebook moved to `legacy/` for provenance. |
0 commit comments