Source code for GPy.likelihoods.poisson

from __future__ import division
# Copyright (c) 2012-2014 Ricardo Andrade, Alan Saul
# Licensed under the BSD 3-clause license (see LICENSE.txt)

import numpy as np
from scipy import stats,special
import scipy as sp
from . import link_functions
from .likelihood import Likelihood

[docs]class Poisson(Likelihood): """ Poisson likelihood .. math:: p(y_{i}|\\lambda(f_{i})) = \\frac{\\lambda(f_{i})^{y_{i}}}{y_{i}!}e^{-\\lambda(f_{i})} .. Note:: Y is expected to take values in {0,1,2,...} """ def __init__(self, gp_link=None): if gp_link is None: gp_link = link_functions.Log() super(Poisson, self).__init__(gp_link, name='Poisson') def _conditional_mean(self, f): """ the expected value of y given a value of f """ return self.gp_link.transf(f) # return np.prod(stats.poisson.pmf(y,link_f))
[docs] def d2logpdf_dlink2(self, link_f, y, Y_metadata=None): """ Hessian at y, given link(f), w.r.t link(f) i.e. second derivative logpdf at y given link(f_i) and link(f_j) w.r.t link(f_i) and link(f_j) The hessian will be 0 unless i == j .. math:: \\frac{d^{2} \\ln p(y_{i}|\lambda(f_{i}))}{d^{2}\\lambda(f)} = \\frac{-y_{i}}{\\lambda(f_{i})^{2}} :param link_f: latent variables link(f) :type link_f: Nx1 array :param y: data :type y: Nx1 array :param Y_metadata: Y_metadata which is not used in poisson distribution :returns: Diagonal of hessian matrix (second derivative of likelihood evaluated at points f) :rtype: Nx1 array .. Note:: Will return diagonal of hessian, since every where else it is 0, as the likelihood factorizes over cases (the distribution for y_i depends only on link(f_i) not on link(f_(j!=i)) """ return -y/(link_f**2)
[docs] def d3logpdf_dlink3(self, link_f, y, Y_metadata=None): """ Third order derivative log-likelihood function at y given link(f) w.r.t link(f) .. math:: \\frac{d^{3} \\ln p(y_{i}|\lambda(f_{i}))}{d^{3}\\lambda(f)} = \\frac{2y_{i}}{\\lambda(f_{i})^{3}} :param link_f: latent variables link(f) :type link_f: Nx1 array :param y: data :type y: Nx1 array :param Y_metadata: Y_metadata which is not used in poisson distribution :returns: third derivative of likelihood evaluated at points f :rtype: Nx1 array """ d3lik_dlink3 = 2*y/(link_f)**3 return d3lik_dlink3
[docs] def conditional_mean(self,gp): """ The mean of the random variable conditioned on one value of the GP """ return self.gp_link.transf(gp)
[docs] def conditional_variance(self,gp): """ The variance of the random variable conditioned on one value of the GP """ return self.gp_link.transf(gp)
[docs] def samples(self, gp, Y_metadata=None): """ Returns a set of samples of observations based on a given value of the latent variable. :param gp: latent variable """ orig_shape = gp.shape gp = gp.flatten() # Ysim = np.random.poisson(self.gp_link.transf(gp), [samples, gp.size]).T # return Ysim.reshape(orig_shape+(samples,)) Ysim = np.random.poisson(self.gp_link.transf(gp)) return Ysim.reshape(orig_shape)