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.6.tar.gz (7.1 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.6-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: spark_calibration-1.0.6.tar.gz
  • Upload date:
  • Size: 7.1 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.6.tar.gz
Algorithm Hash digest
SHA256 7fd7e16abb7be6e17156630604c7d5281c106f8deb6ff725b68cda02724316de
MD5 087dc9f4c57cd689fdfba7fbda3a0815
BLAKE2b-256 049365f31bd15a20c6540879910caa4c890a9163bb89b0dff3cecba441b6b07e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spark_calibration-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 b19593baf2a0ff85b8f5993f2ac30774c063236a3452b763b2ea3812f2d6ae40
MD5 b16255e1b806da32c314fc1ada1e0bd7
BLAKE2b-256 36b03e7dbe0835d2d909902fde8e6cb2565e46c1afb448778e778d500f696c36

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