Coder Social home page Coder Social logo

Comments (5)

fehiepsi avatar fehiepsi commented on July 17, 2024 1

I guess it just needs a few lines of code. Let me do it. :D

from numpyro.

neerajprad avatar neerajprad commented on July 17, 2024

I tried to use batching.defbroadcasted, but haven't been able to get it to work. Here's a test case for you 😆

import jax.numpy as np
from jax import random, vmap
from jax.scipy.special import logsumexp
import numpyro.distributions as dist
from numpyro.hmc_util import initialize_model
from numpyro.handlers import sample, seed, substitute, trace
from numpyro.mcmc import mcmc


def beta_bernoulli(data):
    alpha = np.array([1.1, 1.1])
    beta = np.array([1.1, 1.1])
    p_latent = sample('p_latent', dist.Beta(alpha, beta))
    sample('obs', dist.Bernoulli(p_latent), obs=data)
    return p_latent


num_warmup, num_samples = 500, 1000
true_probs = np.array([0.9, 0.1])
data = dist.Bernoulli(true_probs).sample(random.PRNGKey(1), size=(1000, 2))
init_params, potential_fn, constrain_fn = initialize_model(random.PRNGKey(2), beta_bernoulli, data)
samples = mcmc(num_warmup, num_samples, init_params,
               potential_fn=potential_fn,
               constrain_fn=constrain_fn)


def log_lk(rng, params, model, *args, **kwargs):
    model = substitute(seed(model, rng), params)
    model_trace = trace(model).get_trace(*args, **kwargs)
    obs_node = model_trace['obs']
    return np.sum(obs_node['fn'].log_prob(obs_node['value']))


def expected_log_likelihood(rng, params, model, *args, **kwargs):
    n = list(params.values())[0].shape[0]
    log_lk_fn = vmap(lambda rng, params: log_lk(rng, params, model, *args, **kwargs))
    log_lk_vals = log_lk_fn(random.split(rng, n), params)
    return logsumexp(log_lk_vals) - np.log(n)


print(expected_log_likelihood(random.PRNGKey(2), samples, beta_bernoulli, data))

from numpyro.

fehiepsi avatar fehiepsi commented on July 17, 2024

I thought that it is something like

batching.defvectorized(xlogy.primitive)

from numpyro.

fehiepsi avatar fehiepsi commented on July 17, 2024

Oppss, it does not work :D

from numpyro.

neerajprad avatar neerajprad commented on July 17, 2024

I think defbroadcasting will also broadcast the parameters for binary operators if needed, since its used for binop, but really anything that makes this test case work is fine by me.

from numpyro.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.