Skip to main content

Generalized additive models in Python.

Project description

Actions PythonVersion PyPi Black ReadtheDocs

generalized-additive-models

Generalized Additive Models (GAMs) in Python.

About

GAMs are uniquely placed on the interpretability vs. precitive power continuum. In many applications they perform almost as well as more complex models, but are extremely interpretable.

  • GAMs extend linear regression by allowing non-linear relationships between features and the target.

  • The model is still additive, but link functions and multivariate splines facilitate a broad class of models.

  • While GAMs are likely outperformed by non-additive models (e.g. boosted trees), GAMs are extremely interpretable.

Read more about GAMs:

A GAM is a statistical model in which the target variable depends on unknown smooth functions of the features, and interest focuses on inference about these smooth functions.

An exponential family distribution is specified for the target Y (.e.g Normal, Binomial or Poisson) along with a link function g (for example the identity or log functions) relating the expected value of Y to the predictor variables.

Installation

Install using pip:

pip install generalized-additive-models

Example

from sklearn.datasets import load_diabetes
from sklearn.model_selection import cross_val_score
from generalized_additive_models import GAM, Spline, Categorical

# Load data
data = load_diabetes(as_frame=True)
df, y = data.data, data.target

# Create model
terms = Spline("bp") + Spline("bmi", constraint="increasing") + Categorical("sex")
gam = GAM(terms)

# Cross validate
scores = cross_val_score(gam, df, y, scoring="r2")
print(scores) # array([0.26, 0.4 , 0.41, 0.35, 0.42])

Go to Read the Docs to see full documentation.

Contributing and development

Contributions are very welcome. You can correct spelling mistakes, write documentation, clean up code, implement new features, etc.

Some guidelines for development:

  • Code must comply with the standard. See the GitHub action pipeline for more information.

  • If possible, use existing algorithms from numpy, scipy and scikit-learn.

  • Write tests, especically regression tests if a bug is fixed.

  • Take backward compatibility seriously. API changes require good reason.

Installation for local development:

pip install -e '.[dev,lint,doc]'

Create documentation locally:

sudo apt install pandoc
sphinx-build docs _built_docs/html -W -a -E --keep-going
sphinx-autobuild docs _built_docs/html -v -j "auto" --watch generalized_additive_models

Once the version has been incremented, the commit must be tagged and pushed in order to publish to PyPi:

git tag -a v0.1.0 -m "Version 0.1.0" b22724c
git push origin v0.1.0

Citing

TODO

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

generalized_additive_models-0.4.3.tar.gz (296.1 kB view details)

Uploaded Source

Built Distribution

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

generalized_additive_models-0.4.3-py3-none-any.whl (318.2 kB view details)

Uploaded Python 3

File details

Details for the file generalized_additive_models-0.4.3.tar.gz.

File metadata

File hashes

Hashes for generalized_additive_models-0.4.3.tar.gz
Algorithm Hash digest
SHA256 5e0a83ec0f1a8002642cd7de7a333430fd947679c552c94f9192410cc7ab5588
MD5 3105be8c053776c419f8fac9f80a1b7c
BLAKE2b-256 8f430dbe10747287d0b565169d99d55179243c8a92f6037b01c240c6810345a5

See more details on using hashes here.

File details

Details for the file generalized_additive_models-0.4.3-py3-none-any.whl.

File metadata

File hashes

Hashes for generalized_additive_models-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b40695403ebebc8370da4e4e8b16d45dbed02a47c97b5fe7a2e53fb451b08fcc
MD5 a71ead0d6638c47df2b130236f08b5d7
BLAKE2b-256 c3a73c97c5e2adba35b7c66539ca2df2bfc9b568c6bc7abbe9e7e8431ffb67c8

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