Skip to main content

SmartCal is a modular Python package for auto calibrating machine learning models. It includes multiple calibration algorithms, meta-learning-based method selection, and evaluation metrics. Developed by a team from Giza Systems.

Project description

smartcal – Auto-Calibration for Machine Learning

PyPI version Made with Python

smartcal is a modular and extensible Python package that provides automated, metric-driven calibration of classification models. It leverages meta-learning to recommend and tune the best calibrator from a rich suite of calibration algorithms. smartcal supports evaluation with popular calibration metrics.


Features

1. SmartCal Engine

  • Meta-learning-powered recommendation of calibration methods based on dataset characteristics.
  • Automated hyperparameter tuning via Bayesian Optimization.
  • Provides a unified interface for fitting and applying the best calibrator using:
    from smartcal import SmartCal
    
    # Initialize SmartCal with your preferred metric
    smartcal = SmartCal(metric='ECE')  # Supports metrics: ECE, MCE, ConfECE, brier_score, log_loss
    
    # Step 1: Get top 3 recommended calibration methods
    recommended = smartcal.recommend_calibrators(y_true, predictions_prob, n=3) 
    
    # Step 2: Fit and retrieve the best calibrator
    best_calibrator = smartcal.best_fitted_calibrator(y_true, predictions_prob, n_iter=20)
    
    # Step 3: Use the calibrator
    calibrated_probs = best_calibrator.predict(predictions_prob)
    
  • Note: The maximum number of supported calibrators is 12, not 13. This is because we do not include the Probability Tree Calibrator in the default meta-calibration pipeline, as it operates differently by incorporating data features in addition to model outputs. However, you can still use it independently via the calibration_algorithms module.

2. Calibration Algorithms

  • Supports diverse calibration methods, including:
    • Parametric: Temperature Scaling, Platt, Vector, Matrix, Beta, Dirichlet, Adaptive TS
    • Non-parametric: Isotonic, Histogram, Empirical Binning
    • Hybrid: Meta Calibration, Mix-and-Match Calibration
  • Each calibrator implements standard .fit() and .predict() and metadata APIs.

3. Calibration Metrics

  • Built-in evaluation metrics to assess calibration quality:
    • ECE – Expected Calibration Error
    • MCE – Maximum Calibration Error
    • ConfECE – Confidence-Binned ECE
    • Brier Score – Proper scoring rule measuring accuracy of probabilistic predictions
    • Calibration Curves – for visual inspection of reliability

Package Structure

├── calibration_algorithms/       # All calibration method implementations
├── metrics/                      # Calibration evaluation metrics
├── config/                       # Configuration enums and constants
├── meta_model/                   # Meta-learning recommendation engine
├── meta_features_extraction/     # Meta-feature computation utilities
├── bayesian_optimization/        # Bayesian optimization computation utilities
├── utils/                        # Helper functions and validation
├── smartcal/                     # Core SmartCal meta-calibration engine
└── __init__.py

Supported Calibration Algorithms

  1. Empirical Binning
  2. Isotonic Regression
  3. Temperature Scaling
  4. Beta Calibration
  5. Dirichlet Calibration
  6. Platt Scaling
  7. Vector Scaling
  8. Matrix Scaling
  9. Adaptive Temperature Scaling
  10. Histogram Calibration
  11. Mix-and-Match Calibration
  12. Meta Calibration
  13. Probability tree Calibration

Each calibrator supports .fit() and .predict() with (n_samples, n_classes) formatted input.


Calibration Metrics

smartcal provides implementations for:

  • ECE (Expected Calibration Error)
  • MCE (Maximum Calibration Error)
  • Confidence-ECE (for threshold-based confidence bins)
  • Brier Score (proper scoring rule measuring accuracy of probabilistic predictions)
  • Calibration Curve Plotting (for visualization)

Documentation & Usage

For full documentation and usage guidance, please refer to this colab notebook: smartcal.ipynb


Collaborators

This project is a collaborative effort developed with support from Giza Systems. We would like to acknowledge the following contributors:

Core Team


Citation

If you use SmartCal in your research or publication, please cite it as:

BibTeX:

@inproceedings{
abdelrahman2025smartcal,
title={SmartCal: A Novel Automated Approach to Classifier Probability Calibration},
author={Mohamed Maher Abdelrahman and Mariam Magdy Elseedawy and Osama Fayez Oun and Youssef Medhat and Yara Mostafa Marei and Abdullah Ibrahim and Radwa Mohamed El Shawi},
booktitle={AutoML 2025 Methods Track},
year={2025},
url={https://openreview.net/forum?id=XPtubBurd2}
}

License

MIT License. See LICENSE file for details.

Project details


Download files

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

Source Distribution

smartcal-0.1.16.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

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

smartcal-0.1.16-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

File details

Details for the file smartcal-0.1.16.tar.gz.

File metadata

  • Download URL: smartcal-0.1.16.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for smartcal-0.1.16.tar.gz
Algorithm Hash digest
SHA256 a92d336de38daa66a171ebf9b175d8c9842eb52bf067ab65f72472d45ad221d5
MD5 d703a90d2a237bf62d37944cbe9ca02f
BLAKE2b-256 ebb8a368aa9db49be6d0bf7bf4ca7cbaa7232879e7acef788999fb0d57d2d31b

See more details on using hashes here.

File details

Details for the file smartcal-0.1.16-py3-none-any.whl.

File metadata

  • Download URL: smartcal-0.1.16-py3-none-any.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for smartcal-0.1.16-py3-none-any.whl
Algorithm Hash digest
SHA256 8d8e4e2b3e78e30525b7a129c07a688fff79033f85a9b9c8aefc42f5ad03f4a9
MD5 f118b46265fe218e5d3b366d650dd11f
BLAKE2b-256 db9495a5371042cdf3f783be2646994548c22cf0995269f84ce2f953ed0c5833

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page