https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 02ef44f197cc55fc6aafa25898819ad0828b17f4 authored by Chris Fonnesbeck on 03 October 2016, 19:36:29 UTC
Removed interactive_sampling (#1423)
Tip revision: 02ef44f
gelman_bioassay.py
from pymc3 import *
from numpy import ones, array

# Samples for each dose level
n = 5 * ones(4, dtype=int)
# Log-dose
dose = array([-.86, -.3, -.05, .73])

with Model() as model:

    # Logit-linear model parameters
    alpha = Normal('alpha', 0, tau=0.01)
    beta = Normal('beta', 0, tau=0.01)

    # Calculate probabilities of death
    theta = Deterministic('theta', invlogit(alpha + beta * dose))

    # Data likelihood
    deaths = Binomial('deaths', n=n, p=theta, observed=[0, 1, 3, 5])

    step = NUTS()


def run(n=1000):
    if n == "short":
        n = 50
    with model:
        trace = sample(n, step)

if __name__ == '__main__':
    run()
back to top