Skip to main content

Package to calibrate and understand ML Models

Project description

ML Insights

Welcome to ML-Insights!

This package contains two core sets of functions:

  1. Calibration

  2. Interpreting Models

For probability calibration, the main class is SplineCalib. Given a set of model outputs and the “true” classes, you can fit a SplineCalib object. That object can then be used to calibrate future model predictions post-hoc.

>>> model.fit(X_train, y_train)
>>> sc = mli.SplineCalib()
>>> sc.fit(X_valid, y_valid)
>>> uncalib_preds = model.predict_proba(X_test)
>>> calib_preds = sc.calibrate(uncalib_preds)
>>> cv_preds = mli.cv_predictions(model, X_train, y_train)
>>> model.fit(X_train, y_train)
>>> sc = mli.SplineCalib()
>>> sc.fit(cv_preds, y_train)
>>> uncalib_preds = model.predict_proba(X_test)
>>> calib_preds = sc.calibrate(uncalib_preds)

For model interpretability, we provide the ice_plot and histogram_pair functions as well as other tools.

>>> rd = mli.get_range_dict(X_train)
>>> mli.ice_plot(model, X_test.sample(3), X_train.columns, rd)
>>> mli.histogram_pair(df.outcome, df.feature, bins=np.linspace(0,100,11))

Please see the documentation and examples at the links below.

Python

Python 3.4+

Disclaimer

We have tested this tool to the best of our ability, but understand that it may have bugs. It was most recently developed on Python 3.7.3. Use at your own risk, but feel free to report any bugs to our github. <https://github.com/numeristical/introspective>

Installation

$ pip install ml_insights

Usage

>>> import ml_insights as mli
>>> xray = mli.ModelXRay(model, data)
>>> rfm = RandomForestClassifier(n_estimators = 500, class_weight='balanced_subsample')
>>> rfm_cv = mli.SplineCalibratedClassifierCV(rfm)
>>> rfm_cv.fit(X_train,y_train)
>>> test_res_calib_cv = rfm_cv.predict_proba(X_test)[:,1]
>>> log_loss(y_test,test_res_calib_cv)

Source

Find the latest version on github: https://github.com/numeristical/introspective

Feel free to fork and contribute!

License

Free software: MIT license

Developed By

  • Brian Lucena

  • Ramesh Sampath

References

Alex Goldstein, Adam Kapelner, Justin Bleich, and Emil Pitkin. 2014. Peeking Inside the Black Box: Visualizing Statistical Learning With Plots of Individual Conditional Expectation. Journal of Computational and Graphical Statistics (March 2014)

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

ml_insights-1.0.4.tar.gz (25.5 kB view details)

Uploaded Source

Built Distribution

ml_insights-1.0.4-py2.py3-none-any.whl (37.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file ml_insights-1.0.4.tar.gz.

File metadata

  • Download URL: ml_insights-1.0.4.tar.gz
  • Upload date:
  • Size: 25.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.2

File hashes

Hashes for ml_insights-1.0.4.tar.gz
Algorithm Hash digest
SHA256 408f474af52457b53f7b8dc6080033e180da7aa1d84316f06896cae7399e2cb4
MD5 1e1af379aea4d13cdd3c860b16753a3d
BLAKE2b-256 f83664e0cc85faa522e3d6dac43b90055aafe33ee85b6b9a5c46ec5d024203b4

See more details on using hashes here.

File details

Details for the file ml_insights-1.0.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for ml_insights-1.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 38879cb158af63956ae5f686c3765b687536a2637f2ff2b02f156706bf8dc506
MD5 293a62a2822150672c5fe63332c4cc31
BLAKE2b-256 c668ee0d205c1574d117c0e343aa6cb145af0a9fbbaeef0fe450216754612df5

See more details on using hashes here.

Supported by

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