Skip to main content

OversampleQA

CI Python PyPI Docs License DOI

A diagnostic toolkit to validate, audit, and benchmark oversampling methods for imbalanced classification.

Documentation: https://diogoribeiro7.github.io/OversampleQA/

What It Does

  • Validates oversampling quality with a hidden-majority error rate (binary and multiclass).
  • Offers a broad set of distance metrics (Hassanat, Euclidean, Mahalanobis, etc.).
  • Includes optimized and memory-efficient distance matrix computation.
  • Supports benchmarking across datasets and oversamplers with exportable results.
  • Provides a rich CLI with profiles, templates, shell completion, and diagnostics.
  • Extensible via a plugin system for custom metrics and validators.

Concepts

OversampleQA validates synthetic samples by hiding a portion of the majority class and asking whether generated points look more like the hidden majority or the real minority. Each synthetic sample is scored by its nearest-neighbor distance to both groups using a chosen metric. If a synthetic sample is closer to the hidden majority than to the minority, it is counted as an error. The resulting error rate is a direct signal of how often oversampling produces majority-like artifacts. Lower error rates suggest better minority fidelity, but the absolute value depends on the dataset, metric, and hidden ratio. For multiclass data, the same idea generalizes to a confusion-style error matrix across classes.

Install

Python 3.10+ is required. Install the latest release from PyPI:

pip install oversampleqa

For the optional performance helpers:

pip install "oversampleqa[performance]"

For development or unreleased changes, install from source:

git clone https://github.com/diogoribeiro7/OversampleQA.git
cd OversampleQA
poetry install

To depend on the current repository state from another project:

pip install git+https://github.com/diogoribeiro7/OversampleQA.git

Quick Start (Python)

python - <<'PY'
from sklearn.datasets import make_classification
from imblearn.over_sampling import SMOTE
from oversampleqa import validate_oversampling

X, y = make_classification(
    n_samples=1000,
    n_features=20,
    n_informative=10,
    n_redundant=10,
    n_clusters_per_class=1,
    weights=[0.9, 0.1],
    random_state=42,
)

error_rate = validate_oversampling(
    X=X,
    y=y,
    minority_label=1,
    oversampler=SMOTE(random_state=42),
    hidden_ratio=0.1,
    metric="hassanat",
)

print(f"SMOTE validation error rate: {error_rate:.3f}")
PY

CLI

oversampleqa --help
oversampleqa validate data.csv \
  --target target \
  --minority-label 1 \
  --oversampler SMOTE \
  --metric hassanat \
  --hidden-ratio 0.1 \
  --export json \
  --output runs
oversampleqa profiles
oversampleqa template --template production -o oversampleqa.yaml
oversampleqa benchmark --output benchmark_results
oversampleqa doctor

Legacy minimal CLI (if you prefer a smaller surface):

oversampleqa-validate --help

Configuration

The enhanced CLI loads configuration from ~/.oversampleqa/config.yaml by default. You can override it with --config and select profiles with --profile.

Examples And Docs

Build docs:

make docs

Development

# One-liner
make setup

# Or run onboarding helper
poetry run python scripts/onboard.py

# Manual steps
poetry install
poetry run pre-commit install
poetry run pre-commit install --hook-type commit-msg

Quality Checks

# Lint and typecheck -- both pass clean
make lint typecheck
# Run tests with coverage
make coverage
# Security audit
make security
# Build docs the way CI does, with warnings as errors
make docs
# Full pre-commit suite
poetry run pre-commit run --all-files

Linting and formatting are handled by ruff alone; the enforced rule set lives in pyproject.toml. These commands work on Windows and Linux alike.

Citation

If you use OversampleQA in academic work, please cite it. Machine-readable metadata lives in CITATION.cff, which GitHub renders as a "Cite this repository" button.

@software{ribeiro_oversampleqa,
  author  = {Ribeiro, Diogo},
  title   = {{OversampleQA: a diagnostic toolkit to validate, audit,
             and benchmark oversampling methods}},
  version = {0.8.0},
  year    = {2026},
  doi     = {10.5281/zenodo.21940361},
  url     = {https://doi.org/10.5281/zenodo.21940361}
}

The DOI above is the concept DOI: it always resolves to the newest archived version. To cite this exact release instead, use 10.5281/zenodo.22197058. Every archived version's DOI is listed in CITATION.cff; see Citing OversampleQA for the release and DOI sequence, and for why 0.5.1 has no record of its own.

License

MIT. See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oversampleqa-0.8.0.tar.gz (133.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

oversampleqa-0.8.0-py3-none-any.whl (150.0 kB view details)

Uploaded Python 3

File details

Details for the file oversampleqa-0.8.0.tar.gz.

File metadata

  • Download URL: oversampleqa-0.8.0.tar.gz
  • Upload date:
  • Size: 133.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for oversampleqa-0.8.0.tar.gz
Algorithm Hash digest
SHA256 7ac10b82d50566e3d99974902b782ffa86136488adf3ddfc22689a48d2a0141d
MD5 f016ea9e1d7932379b3a5a46595dfe5b
BLAKE2b-256 12327a5700df253a93e14d2d94b63e156747550cb61d757ee98e1d3196436712

See more details on using hashes here.

Provenance

The following attestation bundles were made for oversampleqa-0.8.0.tar.gz:

Publisher: publish.yml on DiogoRibeiro7/OversampleQA

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file oversampleqa-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: oversampleqa-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 150.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for oversampleqa-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 718c162812a15c788584b9a4655f0ee3cf8b2830f99cf4e0924a10923873f971
MD5 8e0dd21c93949babfb931011b1e0cd21
BLAKE2b-256 20864e97f90089736158235958a42e8518ec907aa65052eb51fda04ff90432dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for oversampleqa-0.8.0-py3-none-any.whl:

Publisher: publish.yml on DiogoRibeiro7/OversampleQA

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.8.0 This release

2 files

0.7.0

2 files

0.6.1

2 files

0.6.0

2 files

0.5.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page