Rust re-implementation of the Davis/Goadrich AUC Calculator.
For academic use only. See the License section for details.
This builds with Cargo + maturin + setuptools-rust currently.
pip install maturin setuptools-rustCreate a development build:
cd lib-auccalc-py/
maturin develop --release
pip install -e .This implements a scikit-learn-style metrics class that takes y_true and y_pred vectors.
>>> from auccalculator.metrics import roc_auc_score
>>> roc_auc_score(
... [1, 1, 0, 1, 1, 1, 0, 0, 1, 0],
... [0.9, 0.8, 0.7, 0.6, 0.55, 0.54, 0.53, 0.52, 0.51, 0.505],
... )
0.75Or Confusion instances can be initialized to compute AUC-ROC and AUC-PR:
>>> from auccalculator import Confusion
>>> conf = Confusion(
... [1, 1, 0, 1, 1, 1, 0, 0, 1, 0],
... [0.9, 0.8, 0.7, 0.6, 0.55, 0.54, 0.53, 0.52, 0.51, 0.505],
... )
>>> conf.aucroc()
0.75
>>> conf.aucpr()
0.8243055555555555auc-calculator is a derivative work designed to exactly match the
performance of the original AUCCalculator.
The original was "provided as-is for academic purposes only,"
and was not released under an open source license.
This repository may not be used outside an academic context.