Very easy Bayesian regression using numpyro.
Project description
Shabadoo: very easy Bayesian regression.
"That's the worst name I ever heard."
Shabadoo is the worst kind of machine learning. It automates nothing; your models will not perform well and it will be your own fault.
BEWARE. Shabadoo is in an open alpha phase. It is authored by someone who does not know how to manage open source projects. Things will change as the author identifies mistakes and corrects (?) them.
Shabadoo is for people who want to do Bayesian regression but who do not want to write probabilistic programming code. You only need to assign priors to features and pass your pandas dataframe to a .fit()
/ .predict()
API.
Shabadoo runs on numpyro and is basically a wrapper around the numpyro Bayesian regression tutorial.
Quickstart
Install
pip install shabadoo
or
pip install git+https://github.com/nolanbconaway/shabadoo
Specifying a Shabadoo Bayesian model
Shabadoo was designed to make it as easy as possible to test ideas about features and their priors. Models are defined using a class which contains configuration specifying how the model should behave.
You need to define a new class which inherits from one of the Shabadoo models. Currently, Normal, Poisson, and Bernoulli are implemented.
import numpy as np
import pandas as pd
from numpyro import distributions as dist
from shabadoo import Normal
# random number generator seed, to reproduce exactly.
RNG_KEY = np.array([0, 0])
class Model(Normal):
dv = "y"
features = dict(
const=dict(transformer=1, prior=dist.Normal(0, 1)),
x=dict(transformer=lambda df: df.x, prior=dist.Normal(0, 1)),
)
df = pd.DataFrame(dict(x=[1, 2, 2, 3, 4, 5], y=[1, 2, 3, 4, 3, 5]))
The dv
attribute specifies the variable you are predicting. features
is a dictionary of dictionaries, with one item per feature. Above, two features are defined (const
and x
). Each feature needs a transformer
and a prior
.
The transformer specifies how to obtain the feature given a source dataframe. The prior specifies your beliefs about the model's coefficient for that feature.
Fitting & predicting the model
Shabadoo models implement the well-known .fit
/ .predict
api pattern.
model = Model().fit(df, rng_key=RNG_KEY)
# sample: 100%|██████████| 1500/1500 [00:04<00:00, 308.01it/s, 7 steps of size 4.17e-01. acc. prob=0.89]
model.predict(df)
"""
0 1.351874
1 2.219510
2 2.219510
3 3.087146
4 3.954782
5 4.822418
"""
Credible Intervals
Use model.predict(df, ci=True)
to obtain a credible interval around the model's prediction. This interval accounts for error estimating the model's coefficients but does not account for the error around the model's point estimate (PRs welcome ya'll!).
model.predict(df, ci=True)
"""
y ci_lower ci_upper
0 1.351874 0.730992 1.946659
1 2.219510 1.753340 2.654678
2 2.219510 1.753340 2.654678
3 3.087146 2.663617 3.526434
4 3.954782 3.401837 4.548420
5 4.822418 4.047847 5.578753
"""
Inspecting the model
Shabadoo's model classes come with a number of model inspection methods. It should be easy to understand your model's composition and with Shabadoo it is!
Print the model formula
The average and standard deviation of the MCMC samples are used to provide a rough sense of the coefficient in general.
print(model.formula)
"""
y = (
const * 0.48424(+-0.64618)
+ x * 0.86764(+-0.21281)
)
"""
Look at the posterior samples
Samples from fitted models can be accessed using model.samples
(for raw device arrays) and model.samples_df
(for a tidy DataFrame).
model.samples['x']
"""
DeviceArray([[0.9443443 , 1.0215557 , 1.0401363 , 1.1768144 , 1.1752374 ,
...
"""
model.samples_df.head()
"""
const x
chain sample
0 0 0.074572 0.944344
1 0.214246 1.021556
2 -0.172168 1.040136
3 0.440978 1.176814
4 0.454463 1.175237
"""
Measure prediction accuracy
The Model.metrics()
method is packed with functionality. You should not have to write a lot of code to evaluate your model's prediction accuracy!
Obtaining aggregate statistics is as easy as:
model.metrics(df)
{'r': 0.8646920305474705,
'rsq': 0.7476923076923075,
'mae': 0.5661819464378061,
'mape': 0.21729708806356265}
For per-point errors, use aggerrs=False
. A pandas dataframe will be returned that you can join on your source data using its index.
model.metrics(df, aggerrs=False)
"""
residual pe ape
0 -0.351874 -35.187366 35.187366
1 -0.219510 -10.975488 10.975488
2 0.780490 26.016341 26.016341
3 0.912854 22.821353 22.821353
4 -0.954782 -31.826066 31.826066
5 0.177582 3.551638 3.551638
"""
You can use grouped_metrics
to understand within-group errors. Under the hood, the predicted and actual dv
are groupby-aggregated (default sum) and metrics are computed within each group.
df["group"] = [1, 1, 1, 2, 2, 2]
model.grouped_metrics(df, 'group')
{'r': 1.0,
'rsq': 1.0,
'mae': 0.17238043177407247,
'mape': 0.023077819594065668}
model.grouped_metrics(df, "group", aggerrs=False)
"""
residual pe ape
group
1 -0.209107 -3.485113 3.485113
2 -0.135654 -1.130450 1.130450
"""
Saving and recovering a saved model
Shabadoo models have to_json
and from_dict
methods which allow models to be saved and recovered exactly.
import json
# export to a JSON string
model_json = model.to_json()
# recover the model
model_recovered = Model.from_dict(json.loads(model_json))
# check the predictions are the same
model_recovered.predict(df).equals(model.predict(df))
True
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
File details
Details for the file shabadoo-0.1.0.tar.gz
.
File metadata
- Download URL: shabadoo-0.1.0.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dacd5be4f7ce1e5368d315331fbb7b16455c5caff846d7cffc003d8a5a249b29 |
|
MD5 | 7adcb2267807d61296712802fbed4d98 |
|
BLAKE2b-256 | d164458514c5fb78ed74db3692d5665dacd412f575c27b826c0c986ca2ea631d |
File details
Details for the file shabadoo-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: shabadoo-0.1.0-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1179f2f3127e820a6a7f4b48057f93e74965d1cfcc3e1bcfde975b1958886452 |
|
MD5 | b99b6b388d71eaaf10f84cebdb9c6bc0 |
|
BLAKE2b-256 | 20149543a1c9f311242bc2d8a2cbbf3506a921b5fe9b79e849d0b86ffff21923 |