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.6.1},
  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. The exact DOI for 0.6.1 will be minted by Zenodo after the GitHub release is archived. 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.6.1.tar.gz (121.3 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.6.1-py3-none-any.whl (135.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for oversampleqa-0.6.1.tar.gz
Algorithm Hash digest
SHA256 11f31ce26e805d5cd08b7c7548d16c2de7d51907444f114283a3cf67dd5b34d8
MD5 29035e36f9e5a1254661d8586c3ec452
BLAKE2b-256 a943a5999c3a25f1da6fdd93840f017db077d7bfa80d0de1274496e0a746a775

See more details on using hashes here.

Provenance

The following attestation bundles were made for oversampleqa-0.6.1.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.6.1-py3-none-any.whl.

File metadata

  • Download URL: oversampleqa-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 135.8 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.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b5ab9a86a8095e28b268168791832a45a68a144d0dd07ecb94028f651543e2ac
MD5 6156ba4f8d12753ec66383c3e66ee771
BLAKE2b-256 5c44e4e89fea3513a13096960656f48e279c3218bbe90c43956df6371e7450b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for oversampleqa-0.6.1-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

0.8.0

2 files

0.7.0

2 files

This release

0.6.1 This release

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