Source code for pyhf.tensor.numpy_backend

"""NumPy Tensor Library Module."""
import numpy as np
import logging
from scipy.special import gammaln
from scipy.stats import norm, poisson


log = logging.getLogger(__name__)


class _BasicPoisson(object):
    def __init__(self, rate):
        self.rate = rate

    def sample(self, sample_shape):
        return poisson(self.rate).rvs(size=sample_shape + self.rate.shape)

    def log_prob(self, value):
        tensorlib = numpy_backend()
        return tensorlib.poisson_logpdf(value, self.rate)


class _BasicNormal(object):
    def __init__(self, loc, scale):
        self.loc = loc
        self.scale = scale

    def sample(self, sample_shape):
        return norm(self.loc, self.scale).rvs(size=sample_shape + self.loc.shape)

    def log_prob(self, value):
        tensorlib = numpy_backend()
        return tensorlib.normal_logpdf(value, self.loc, self.scale)


[docs]class numpy_backend(object): """NumPy backend for pyhf"""
[docs] def __init__(self, **kwargs): self.name = 'numpy'
[docs] def clip(self, tensor_in, min_value, max_value): """ Clips (limits) the tensor values to be within a specified min and max. Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> a = pyhf.tensorlib.astensor([-2, -1, 0, 1, 2]) >>> pyhf.tensorlib.clip(a, -1, 1) array([-1., -1., 0., 1., 1.]) Args: tensor_in (`tensor`): The input tensor object min_value (`scalar` or `tensor` or `None`): The minimum value to be cliped to max_value (`scalar` or `tensor` or `None`): The maximum value to be cliped to Returns: NumPy ndarray: A clipped `tensor` """ return np.clip(tensor_in, min_value, max_value)
[docs] def tile(self, tensor_in, repeats): """ Repeat tensor data along a specific dimension Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> a = pyhf.tensorlib.astensor([[1.0], [2.0]]) >>> pyhf.tensorlib.tile(a, (1, 2)) array([[1., 1.], [2., 2.]]) Args: tensor_in (`Tensor`): The tensor to be repeated repeats (`Tensor`): The tuple of multipliers for each dimension Returns: NumPy ndarray: The tensor with repeated axes """ return np.tile(tensor_in, repeats)
[docs] def conditional(self, predicate, true_callable, false_callable): """ Runs a callable conditional on the boolean value of the evaulation of a predicate Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> tensorlib = pyhf.tensorlib >>> a = tensorlib.astensor([4]) >>> b = tensorlib.astensor([5]) >>> tensorlib.conditional((a < b)[0], lambda: a + b, lambda: a - b) array([9.]) Args: predicate (`scalar`): The logical condition that determines which callable to evaluate true_callable (`callable`): The callable that is evaluated when the :code:`predicate` evalutes to :code:`true` false_callable (`callable`): The callable that is evaluated when the :code:`predicate` evalutes to :code:`false` Returns: NumPy ndarray: The output of the callable that was evaluated """ return true_callable() if predicate else false_callable()
[docs] def tolist(self, tensor_in): try: return tensor_in.tolist() except AttributeError: if isinstance(tensor_in, list): return tensor_in raise
[docs] def outer(self, tensor_in_1, tensor_in_2): return np.outer(tensor_in_1, tensor_in_2)
[docs] def gather(self, tensor, indices): return tensor[indices]
[docs] def boolean_mask(self, tensor, mask): return tensor[mask]
[docs] def isfinite(self, tensor): return np.isfinite(tensor)
[docs] def astensor(self, tensor_in, dtype='float'): """ Convert to a NumPy array. Args: tensor_in (Number or Tensor): Tensor object Returns: `numpy.ndarray`: A multi-dimensional, fixed-size homogenous array. """ dtypemap = {'float': np.float64, 'int': np.int64, 'bool': np.bool_} try: dtype = dtypemap[dtype] except KeyError: log.error('Invalid dtype: dtype must be float, int, or bool.') raise tensor = np.asarray(tensor_in, dtype=dtype) # Ensure non-empty tensor shape for consistency try: tensor.shape[0] except IndexError: tensor = tensor.reshape(1) return tensor
[docs] def sum(self, tensor_in, axis=None): return np.sum(tensor_in, axis=axis)
[docs] def product(self, tensor_in, axis=None): return np.product(tensor_in, axis=axis)
[docs] def abs(self, tensor): return np.abs(tensor)
[docs] def ones(self, shape): return np.ones(shape)
[docs] def zeros(self, shape): return np.zeros(shape)
[docs] def power(self, tensor_in_1, tensor_in_2): return np.power(tensor_in_1, tensor_in_2)
[docs] def sqrt(self, tensor_in): return np.sqrt(tensor_in)
[docs] def divide(self, tensor_in_1, tensor_in_2): return np.divide(tensor_in_1, tensor_in_2)
[docs] def log(self, tensor_in): return np.log(tensor_in)
[docs] def exp(self, tensor_in): return np.exp(tensor_in)
[docs] def stack(self, sequence, axis=0): return np.stack(sequence, axis=axis)
[docs] def where(self, mask, tensor_in_1, tensor_in_2): return np.where(mask, tensor_in_1, tensor_in_2)
[docs] def concatenate(self, sequence, axis=0): """ Join a sequence of arrays along an existing axis. Args: sequence: sequence of tensors axis: dimension along which to concatenate Returns: output: the concatenated tensor """ return np.concatenate(sequence, axis=axis)
[docs] def simple_broadcast(self, *args): """ Broadcast a sequence of 1 dimensional arrays. Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> pyhf.tensorlib.simple_broadcast( ... pyhf.tensorlib.astensor([1]), ... pyhf.tensorlib.astensor([2, 3, 4]), ... pyhf.tensorlib.astensor([5, 6, 7])) [array([1., 1., 1.]), array([2., 3., 4.]), array([5., 6., 7.])] Args: args (Array of Tensors): Sequence of arrays Returns: list of Tensors: The sequence broadcast together. """ return np.broadcast_arrays(*args)
[docs] def shape(self, tensor): return tensor.shape
[docs] def reshape(self, tensor, newshape): return np.reshape(tensor, newshape)
[docs] def einsum(self, subscripts, *operands): """ Evaluates the Einstein summation convention on the operands. Using the Einstein summation convention, many common multi-dimensional array operations can be represented in a simple fashion. This function provides a way to compute such summations. The best way to understand this function is to try the examples below, which show how many common NumPy functions can be implemented as calls to einsum. Args: subscripts: str, specifies the subscripts for summation operands: list of array_like, these are the tensors for the operation Returns: tensor: the calculation based on the Einstein summation convention """ return np.einsum(subscripts, *operands)
[docs] def poisson_logpdf(self, n, lam): return n * np.log(lam) - lam - gammaln(n + 1.0)
[docs] def poisson(self, n, lam): r""" The continous approximation, using :math:`n! = \Gamma\left(n+1\right)`, to the probability mass function of the Poisson distribution evaluated at :code:`n` given the parameter :code:`lam`. Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> pyhf.tensorlib.poisson(5., 6.) 0.16062314104797995 >>> values = pyhf.tensorlib.astensor([5., 9.]) >>> rates = pyhf.tensorlib.astensor([6., 8.]) >>> pyhf.tensorlib.poisson(values, rates) array([0.16062314, 0.12407692]) Args: n (`tensor` or `float`): The value at which to evaluate the approximation to the Poisson distribution p.m.f. (the observed number of events) lam (`tensor` or `float`): The mean of the Poisson distribution p.m.f. (the expected number of events) Returns: NumPy float: Value of the continous approximation to Poisson(n|lam) """ n = np.asarray(n) lam = np.asarray(lam) return np.exp(n * np.log(lam) - lam - gammaln(n + 1.0))
[docs] def normal_logpdf(self, x, mu, sigma): # this is much faster than # norm.logpdf(x, loc=mu, scale=sigma) # https://codereview.stackexchange.com/questions/69718/fastest-computation-of-n-likelihoods-on-normal-distributions root2 = np.sqrt(2) root2pi = np.sqrt(2 * np.pi) prefactor = -np.log(sigma * root2pi) summand = -np.square(np.divide((x - mu), (root2 * sigma))) return prefactor + summand
# def normal_logpdf(self, x, mu, sigma): # return norm.logpdf(x, loc=mu, scale=sigma)
[docs] def normal(self, x, mu, sigma): r""" The probability density function of the Normal distribution evaluated at :code:`x` given parameters of mean of :code:`mu` and standard deviation of :code:`sigma`. Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> pyhf.tensorlib.normal(0.5, 0., 1.) 0.3520653267642995 >>> values = pyhf.tensorlib.astensor([0.5, 2.0]) >>> means = pyhf.tensorlib.astensor([0., 2.3]) >>> sigmas = pyhf.tensorlib.astensor([1., 0.8]) >>> pyhf.tensorlib.normal(values, means, sigmas) array([0.35206533, 0.46481887]) Args: x (`tensor` or `float`): The value at which to evaluate the Normal distribution p.d.f. mu (`tensor` or `float`): The mean of the Normal distribution sigma (`tensor` or `float`): The standard deviation of the Normal distribution Returns: NumPy float: Value of Normal(x|mu, sigma) """ return norm.pdf(x, loc=mu, scale=sigma)
[docs] def normal_cdf(self, x, mu=0, sigma=1): """ The cumulative distribution function for the Normal distribution Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> pyhf.tensorlib.normal_cdf(0.8) 0.7881446014166034 >>> values = pyhf.tensorlib.astensor([0.8, 2.0]) >>> pyhf.tensorlib.normal_cdf(values) array([0.7881446 , 0.97724987]) Args: x (`tensor` or `float`): The observed value of the random variable to evaluate the CDF for mu (`tensor` or `float`): The mean of the Normal distribution sigma (`tensor` or `float`): The standard deviation of the Normal distribution Returns: NumPy float: The CDF """ return norm.cdf(x, loc=mu, scale=sigma)
[docs] def poisson_dist(self, rate): r""" The Poisson distribution with rate parameter :code:`rate`. Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> rates = pyhf.tensorlib.astensor([5, 8]) >>> values = pyhf.tensorlib.astensor([4, 9]) >>> poissons = pyhf.tensorlib.poisson_dist(rates) >>> poissons.log_prob(values) array([-1.74030218, -2.0868536 ]) Args: rate (`tensor` or `float`): The mean of the Poisson distribution (the expected number of events) Returns: Poisson distribution: The Poisson distribution class """ return _BasicPoisson(rate)
[docs] def normal_dist(self, mu, sigma): r""" The Normal distribution with mean :code:`mu` and standard deviation :code:`sigma`. Example: >>> import pyhf >>> pyhf.set_backend("numpy") >>> means = pyhf.tensorlib.astensor([5, 8]) >>> stds = pyhf.tensorlib.astensor([1, 0.5]) >>> values = pyhf.tensorlib.astensor([4, 9]) >>> normals = pyhf.tensorlib.normal_dist(means, stds) >>> normals.log_prob(values) array([-1.41893853, -2.22579135]) Args: mu (`tensor` or `float`): The mean of the Normal distribution sigma (`tensor` or `float`): The standard deviation of the Normal distribution Returns: Normal distribution: The Normal distribution class """ return _BasicNormal(mu, sigma)