Skip to main content

Calibratiing model scores/probabilites with pyspark dataframes

Project description

Model calibration with pyspark

This package provides a Betacal class which allows the user to fit the default beta calibration model and predict calibrated scores

Setup

spark-calibration is uploaded to PyPi and can be installed with this command:

pip install spark-calibration

Usage

Training

train_df should be a pyspark dataframe with score and label columns

from spark_calibration import Betacal
from spark_calibration import display_classification_calib_metrics
from spark_calibration import plot_calibration_curve


bc = Betacal(parameters="abm")

# training
train_df = spark.read.parquet("s3://train/")
bc.fit(train_df)


# Get the logistic regression model and individual coefficients
print(bc.lr_model, a, b)

# a,b -> coefficients of lr model
# lr_model -> pyspark ml logistic regression model

Prediction

test_df is a pyspark dataframe with score as one of the columns. The predict function adds a new column prediction which has the calibrated score

test_df = spark.read.parquet("s3://test/")
test_df = bc.predict(test_df)

Pre post calibration metrics comparison

The test_df should have score, prediction & label columns. The display_classification_calib_metrics functions displays brier_score_loss, log_loss, area_under_PR_curve and area_under_ROC_curve

display_classification_calib_metrics(test_df)

plot the calibration curve

Computes true, predicted probabilites (pre & post calibration) using quantile binning strategy with 50 bins and plots the calibration curve

plot_calibration_curve(test_df)

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

spark_calibration-1.0.4.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

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

spark_calibration-1.0.4-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: spark_calibration-1.0.4.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for spark_calibration-1.0.4.tar.gz
Algorithm Hash digest
SHA256 e8574b46f9065955082cd25f50587e93f19e6aef43d05f0c329ae7008ed5405f
MD5 2130f99465d142c4c61a42fd149ad04f
BLAKE2b-256 73ec8b7a85badb81f0236f853f859937560cf91510a59c6addbbda1db2e66f49

See more details on using hashes here.

File details

Details for the file spark_calibration-1.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for spark_calibration-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 4e931b0030a3270e62c4c59b1892a3fd182614b19463a924ffe42b2a2b8c46cf
MD5 7dab349551d5a4fc4ae29ef2f2d189fb
BLAKE2b-256 92dbf7ca3851f6137c70645dbe34e07a2baee83ada12381583596db99ae0f34a

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