Source code for popsynth.aux_samplers.normal_aux_sampler

import scipy.stats as stats

from popsynth.auxiliary_sampler import AuxiliarySampler, AuxiliaryParameter


[docs]class NormalAuxSampler(AuxiliarySampler): _auxiliary_sampler_name = "NormalAuxSampler" mu = AuxiliaryParameter(default=0) tau = AuxiliaryParameter(default=1, vmin=0) sigma = AuxiliaryParameter(default=1, vmin=0)
[docs] def __init__(self, name: str, observed: bool = True): """ A normal distribution sampler, where property ~ N(``mu``, ``sigma``). :param name: Name of the property :type name: str :param observed: `True` if the property is observed, `False` if it is latent. Defaults to `True` :type observed: bool :param mu: Mean of the normal :type mu: :class:`AuxiliaryParameter` :param tau: Standard deviation of the normal :type tau: :class:`AuxiliaryParameter` :param sigma: Standard deviation of normal distribution from which observed values are sampled, if ``observed`` is `True` :type sigma: :class:`AuxiliaryParameter` """ super(NormalAuxSampler, self).__init__(name=name, observed=observed)
[docs] def true_sampler(self, size: int): self._true_values = stats.norm.rvs(loc=self.mu, scale=self.tau, size=size)
[docs] def observation_sampler(self, size: int): if self._is_observed: self._obs_values = stats.norm.rvs(loc=self._true_values, scale=self.sigma, size=size) else: self._obs_values = self._true_values