Skip to main content

Conjugate Prior

Python implementation of the conjugate prior table for Bayesian Statistics

Downloads

See wikipedia page:

https://en.wikipedia.org/wiki/Conjugate_prior#Table_of_conjugate_distributions

Installation:

pip install conjugate-prior

Supported Models:

  1. BetaBinomial - Useful for independent trials such as click-trough-rate (ctr), web visitor conversion.
  2. BetaBernoulli - Same as above.
  3. GammaExponential - Useful for churn-rate analysis, cost, dwell-time.
  4. GammaPoisson - Useful for time passed until event, as above.
  5. NormalNormalKnownVar - Useful for modeling a centralized distribution with constant noise.
  6. NormalLogNormalKnownVar - Useful for modeling a Length of a support phone call.
  7. InvGammaNormalKnownMean - Useful for modeling the effect of a noise.
  8. InvGammaWeibullKnownShape - Useful for reasoning about particle sizes over time.
  9. DirichletMultinomial - Extension of BetaBinomial to more than 2 types of events (Limited support).

Basic API

  1. model = GammaExponential(a, b) - A Bayesian model with an Exponential likelihood, and a Gamma prior. Where a and b are the prior parameters.
  2. model.pdf(x) - Returns the probability-density-function of the prior function at x.
  3. model.cdf(x) - Returns the cumulative-density-function of the prior function at x.
  4. model.mean() - Returns the prior mean.
  5. model.plot(l, u) - Plots the prior distribution between l and u.
  6. model.posterior(l, u) - Returns the credible interval on (l,u) (equivalent to cdf(u)-cdf(l)).
  7. model.update(data) - Returns a new model after observing data.
  8. model.predict(x) - Predicts the likelihood of observing x (if a posterior predictive exists).
  9. model.sample() - Draw a single sample from the posterior distribution.

Coin flip example:

from conjugate_prior import BetaBinomial
heads = 95
tails = 105
prior_model = BetaBinomial() # Uninformative prior
updated_model = prior_model.update(heads, tails)
credible_interval = updated_model.posterior(0.45, 0.55)
print ("There's {p:.2f}% chance that the coin is fair".format(p=credible_interval*100))
predictive = updated_model.predict(50, 50)
print ("The chance of flipping 50 Heads and 50 Tails in 100 trials is {p:.2f}%".format(p=predictive*100))

Variant selection with Multi-armed-bandit

Assume we have 10 creatives (variants) we can choose for our ad campaign, at first we start with the uninformative prior.

After getting feedback (i.e. clicks) from displaying the ads, we update our model.

Then we sample the DirrechletMultinomial model for the updated distribution.

from conjugate_prior import DirichletMultinomial
from collections import Counter
# Assuming we have 10 creatives
model = DirichletMultinomial(10)
mle = lambda M:[int(r.argmax()) for r in M]
selections = [v for k,v in sorted(Counter(mle(model.sample(100))).most_common())]
print("Percentage before 1000 clicks: ",selections)
# after a period of time, we got this array of clicks
clicks = [400,200,100,50,20,20,10,0,0,200]
model = model.update(clicks)
selections = [v for k,v in sorted(Counter(mle(model.sample(100))).most_common())]
print("Percentage after 1000 clicks: ",selections)

Naive Recommendation System with UCB

from conjugate_prior import BetaBinomialRanker ranker = BetaBinomialRanker(prior=0.1) # 10% click-through-rate ranker["cmpgn1"]+=(1,9) # 1 click, 9 skips ranker["cmpgn2"]+=(10,90) # 10 click, 90 skips ranker["cmpgn3"]+=(1,2) # 1 click, 3 skips

Balance exploration and exploitation w/UCB

print(ranker.rank_by_ucb())

Release files for conjugate-prior 0.85

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for conjugate-prior 0.85
File Size Uploaded
conjugate_prior-0.85.tar.gz 9.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for conjugate-prior 0.85
File Interpreter ABI Platform
conjugate_prior-0.85-py3-none-any.whl Python 3 none any Details

Total release size: 19.4 kB

Release files / conjugate_prior-0.85.tar.gz

Download URL conjugate_prior-0.85.tar.gz
Size 9.2 kB
Tags Source
SHA-256 checksum
How to use checksums
855d4ce90b40bee0f05b65fa6dca8c8baa7928584d41888e7fe058998dbcc88f
BLAKE2b-256 checksum
How to use checksums
25eeadc2b6949630036809cd13d4eacf250df3931598786fc830e5f8a65c84a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release files / conjugate_prior-0.85-py3-none-any.whl

Download URL conjugate_prior-0.85-py3-none-any.whl
Size 10.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ec8f2474f76d30808b0bf31a330eb8e4afac3e819e9e9f016668f5b6b2da7477
BLAKE2b-256 checksum
How to use checksums
9337194d0f34ac789d9f8bbf31891e3d021052688b7474d74ffb7bdd3bf6d79e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.4

Release history Release notifications | RSS feed

This release

0.85 This release

2 release files

0.84

2 release files

0.83

2 release files

0.81

2 release files

0.72

2 release files

0.71

2 release files

0.64

1 release file

0.63

1 release file

0.62

1 release file

0.61

1 release file

0.56

1 release file

0.55

1 release file

0.38

1 release file

0.36

1 release file

0.35

1 release file

0.34

1 release file

0.33

1 release file

0.32

1 release file

0.31

1 release file

0.29

1 release file

0.28

1 release file

0.27

1 release file

0.26

1 release file

0.25

1 release file

0.24

1 release file

0.23

1 release file

0.21

1 release file

0.8

2 release files

0.7

1 release file

0.6

1 release file

0.5

1 release file

0.4

1 release file

0.3

1 release file

0.2

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page