Penalised GLMs for insurance pricing: group lasso, P-splines, Tweedie
Project description
Penalised GLMs and GAM-style pricing models for insurance. SuperGLM combines
explicit feature specs, exact REML, large-n discrete REML, solver-backed
monotone splines, actuarial validation tooling, and deployable fitted
estimators for Poisson, Gamma, NB2, Tweedie, Binomial, and Gaussian models.
Installation
Install SuperGLM from PyPI:
pip install superglm
Plotly-based interactive charts are optional:
pip install "superglm[plotting]"
The local model editor is included in the normal installation.
Recommended Workflow
For spline-based pricing models, the default path is:
- define explicit feature specs
- fit with
fit_reml()andselection_penalty=0 - compare candidates with
cross_validate(..., fit_mode="fit_reml") - refit on all training data
- evaluate holdout Lorenz and double-lift charts
- serialize the fitted estimator for scoring
from superglm import Categorical, Numeric, Spline, SuperGLM
features = {
"DrivAge": Spline(kind="ps", k=14, knot_strategy="quantile_rows"),
"VehAge": Spline(kind="cr", k=10, knot_strategy="quantile_rows"),
"BonusMalus": Spline(kind="cr", k=12, knot_strategy="quantile_tempered"),
"Area": Categorical(base="most_exposed"),
"LogDensity": Numeric(),
}
model = SuperGLM(
family="poisson",
selection_penalty=0.0,
features=features,
)
model.fit_reml(train_df, y_train, sample_weight=exposure_train, max_reml_iter=30)
mu_holdout = model.predict(holdout_df)
print(model.summary())
Choosing A Fit Path
Selection strength is explicit:
SuperGLM() # no sparse selection
SuperGLM(selection_penalty="auto") # calibrate from the fit data
SuperGLM(selection_penalty=0.05) # fixed selection strength
None and 0.0 disable sparse selection. Automatic calibration occurs only
when requested with "auto". REML accepts only None or 0.0; use spline
select=True when smooth terms should be eligible to shrink inside REML.
fit_reml() with selection_penalty=0
This is the recommended path for spline-heavy GAM-style pricing models. Use it when you want automatic smoothness selection, interpretable smooth terms, and mgcv-style modeling rather than sparse screening.
model = SuperGLM(
family="poisson",
selection_penalty=0.0,
features=features,
)
model.fit_reml(df, y, sample_weight=exposure)
fit_reml(discrete=True)
Use this when the model is still a REML pricing model, but the data is large enough that exact REML becomes expensive. This is the production-scale path for large frequency models.
model = SuperGLM(
family="poisson",
selection_penalty=0.0,
discrete=True,
n_bins=256,
features=features,
)
model.fit_reml(df, y, sample_weight=exposure)
fit() with selection_penalty > 0
Use this when you want sparse screening, compression, or fixed-penalty regularisation. This is a different modeling story from REML smoothness selection.
model = SuperGLM(
family="poisson",
penalty="group_elastic_net",
selection_penalty=0.01,
spline_penalty=0.1,
features=features,
)
model.fit(df, y, sample_weight=exposure)
select=True
select=True on spline terms adds mgcv-style double-penalty shrinkage. This is
the REML-native way to let smooth terms shrink toward linear or zero while
staying in the fit_reml() workflow.
features = {
"DrivAge": Spline(kind="ps", k=14, select=True),
"VehAge": Spline(kind="cr", k=10, select=True),
"Area": Categorical(base="most_exposed"),
}
model = SuperGLM(family="poisson", selection_penalty=0.0, features=features)
model.fit_reml(df, y, sample_weight=exposure)
Validation And Model Comparison
cross_validate() should be part of the standard pricing workflow, not an
afterthought. It gives fold-level metrics, timing, convergence information, and
out-of-fold predictions for challenger comparisons.
from sklearn.model_selection import KFold
from superglm import cross_validate
from superglm.validation import double_lift_chart, lorenz_curve
cv = cross_validate(
model,
train_df,
y_train,
cv=KFold(n_splits=5, shuffle=True, random_state=42),
sample_weight=exposure_train,
fit_mode="fit_reml",
scoring=("deviance", "nll", "gini"),
return_oof=True,
)
gini = lorenz_curve(y_holdout, mu_holdout, exposure=exposure_holdout)
lift = double_lift_chart(
y_obs=y_holdout,
y_pred_model=mu_holdout,
y_pred_current=mu_baseline,
exposure=exposure_holdout,
)
Key outputs:
cv.fold_scores: per-fold metrics, fit time, convergence, and EDFcv.mean_scores/cv.std_scores: summary comparisonscv.oof_predictions: out-of-fold predictions for the training rowslorenz_curve(...): ranking power via Ginidouble_lift_chart(...): business-facing champion/challenger evidence
Monotone Splines
SuperGLM supports solver-backed monotone spline fitting. This is the preferred way to enforce business shape constraints inside the model itself.
BSplineSmooth(..., monotone="increasing", monotone_mode="fit"): constrained QP pathCubicRegressionSpline(..., monotone="decreasing", monotone_mode="fit"): constrained QP pathPSpline(..., monotone="increasing", monotone_mode="fit"): SCOP path
from superglm import BSplineSmooth, PSpline, SuperGLM
qp_model = SuperGLM(
family="gaussian",
selection_penalty=0.0,
features={
"x": BSplineSmooth(n_knots=8, monotone="increasing", monotone_mode="fit"),
},
)
scop_model = SuperGLM(
family="gaussian",
selection_penalty=0.0,
features={
"x": PSpline(n_knots=10, monotone="increasing", monotone_mode="fit"),
},
)
Post-fit isotonic repair still exists, but it should be treated as a manual fallback rather than the main monotone workflow.
Feature Highlights
Spline(kind="ps"),Spline(kind="cr"), andSpline(kind="ns")cover the main spline basis choices.OrderedCategorical(...)smooths ordered factor levels without forcing a plain one-hot representation and reports one whole-smooth test rather than separate p-values at arbitrary level positions.collapse_levels(...)lets you merge sparse categorical levels while still expanding back to original levels for inference and plotting.interactions=[(...)]supports spline-categorical, numeric-categorical, tensor, and other interaction types.m=(...)supports multi-order spline penalties with separate REML lambdas.
from superglm import Categorical, OrderedCategorical, Spline, collapse_levels
area_grouping = collapse_levels(train_df["Area"], groups={"Rural": ["E", "F"]})
features = {
"VehAge": Spline(kind="cr", k=10),
"Area": Categorical(base="most_exposed", grouping=area_grouping),
"BonusClass": OrderedCategorical(
order=["A", "B", "C", "D"],
basis=Spline(kind="ps", k=6),
),
}
Weights And Offsets
Public fitting examples use sample_weight=. In insurance settings this means
exposure / frequency weight, not inverse-variance weight.
import numpy as np
# Raw count target: offset absorbs exposure, model estimates a rate
model.fit(df, claim_counts, offset=np.log(exposure))
# Rate target: sample_weight carries exposure
model.fit(df, claim_rate, sample_weight=exposure)
Validation helpers such as lorenz_curve(...) and double_lift_chart(...)
still use exposure=..., which is correct for that API.
Deployment
A fitted SuperGLM is the deployment artifact. It already contains:
- registered feature specs
- learned knot geometry and constraints
- fitted coefficients and intercept
- REML smoothing parameters
import pickle
with open("pricing_model.pkl", "wb") as f:
pickle.dump(model, f)
with open("pricing_model.pkl", "rb") as f:
loaded = pickle.load(f)
mu = loaded.predict(score_df)
The loaded model can still score, print summaries, rebuild curves, and produce relativity views without refitting.
Advanced Penalty Objects
At the top-level model API, prefer selection_penalty= and spline_penalty=.
Low-level penalty objects still expose lambda1, for example:
from superglm import GroupElasticNet
penalty = GroupElasticNet(lambda1=0.01, alpha=0.5)
model = SuperGLM(family="poisson", penalty=penalty, features=features)
That is advanced usage. It should not be your default starting point.
Learn More
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file superglm-0.13.0.tar.gz.
File metadata
- Download URL: superglm-0.13.0.tar.gz
- Upload date:
- Size: 657.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80a5f543db4a7b8351af4af9e96f9d837a9b6bb36626840b7fb63360b6033f9f
|
|
| MD5 |
0f0dcc0a42f1a586bdf760b5f0e3f904
|
|
| BLAKE2b-256 |
9a2474811bbab789ac14355b7fe32bf98568a2bf10f23cc627bc77c378525de6
|
Provenance
The following attestation bundles were made for superglm-0.13.0.tar.gz:
Publisher:
release.yml on StrudelDoodleS/superglm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
superglm-0.13.0.tar.gz -
Subject digest:
80a5f543db4a7b8351af4af9e96f9d837a9b6bb36626840b7fb63360b6033f9f - Sigstore transparency entry: 2216933621
- Sigstore integration time:
-
Permalink:
StrudelDoodleS/superglm@ada0b4080b9008328597d693f63dfda61fb7d603 -
Branch / Tag:
refs/tags/v0.13.0 - Owner: https://github.com/StrudelDoodleS
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ada0b4080b9008328597d693f63dfda61fb7d603 -
Trigger Event:
push
-
Statement type:
File details
Details for the file superglm-0.13.0-py3-none-any.whl.
File metadata
- Download URL: superglm-0.13.0-py3-none-any.whl
- Upload date:
- Size: 768.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de0962b40571e3936984dfb2b9c2a653c10df5d72e3fab58ff469ee5b9e22f6d
|
|
| MD5 |
579bf0b4528da5a72602cc1a9cb98a3a
|
|
| BLAKE2b-256 |
00af4ecac7fdae593597dae26806019c5775b6aa35c800d6a8d9ad97b6da9fc2
|
Provenance
The following attestation bundles were made for superglm-0.13.0-py3-none-any.whl:
Publisher:
release.yml on StrudelDoodleS/superglm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
superglm-0.13.0-py3-none-any.whl -
Subject digest:
de0962b40571e3936984dfb2b9c2a653c10df5d72e3fab58ff469ee5b9e22f6d - Sigstore transparency entry: 2216933659
- Sigstore integration time:
-
Permalink:
StrudelDoodleS/superglm@ada0b4080b9008328597d693f63dfda61fb7d603 -
Branch / Tag:
refs/tags/v0.13.0 - Owner: https://github.com/StrudelDoodleS
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@ada0b4080b9008328597d693f63dfda61fb7d603 -
Trigger Event:
push
-
Statement type: