mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
This PR fixes #69466 and introduces some other minor changes. Tests are somewhat more involved because a reference implementation in `scipy` is not available; tests proceed differently for discrete and continuous distributions. For continuous distributions, we evaluate the gradient of the `log_prob` at the mode. Tests pass if the gradient is zero OR (the mode is at the boundary of the support of the distribution AND the `log_prob` decreases as we move away from the boundary to the interior of the support). For discrete distributions, the notion of a gradient is not well defined. We thus "look" ahead and behind one step (e.g. if the mode of a Poisson distribution is 9, we consider 8 and 10). If the step ahead/behind is still within the support of the distribution, we assert that the `log_prob` is smaller than at the mode. For one-hot encoded distributions (currently just `OneHotCategorical`), we evaluate the underlying mode (i.e. encoded as an integral tensor), "advance" by one label to get another sample that should have lower probability using `other = (mode + 1) % event_size` and re-encode as one-hot. The resultant `other` sample should have lower probability than the mode. Furthermore, Gamma, half Cauchy, and half normal distributions have their support changed from positive to nonnegative. This change is necessary because the mode of the "half" distributions is zero, and the mode of the gamma distribution is zero for `concentration <= 1`. cc @fritzo Pull Request resolved: https://github.com/pytorch/pytorch/pull/76690 Approved by: https://github.com/neerajprad
90 lines
3.2 KiB
Python
90 lines
3.2 KiB
Python
from numbers import Number
|
|
import torch
|
|
from torch._six import nan
|
|
from torch.distributions import constraints
|
|
from torch.distributions.distribution import Distribution
|
|
from torch.distributions.gamma import Gamma
|
|
from torch.distributions.utils import broadcast_all
|
|
|
|
|
|
class FisherSnedecor(Distribution):
|
|
r"""
|
|
Creates a Fisher-Snedecor distribution parameterized by :attr:`df1` and :attr:`df2`.
|
|
|
|
Example::
|
|
|
|
>>> m = FisherSnedecor(torch.tensor([1.0]), torch.tensor([2.0]))
|
|
>>> m.sample() # Fisher-Snedecor-distributed with df1=1 and df2=2
|
|
tensor([ 0.2453])
|
|
|
|
Args:
|
|
df1 (float or Tensor): degrees of freedom parameter 1
|
|
df2 (float or Tensor): degrees of freedom parameter 2
|
|
"""
|
|
arg_constraints = {'df1': constraints.positive, 'df2': constraints.positive}
|
|
support = constraints.positive
|
|
has_rsample = True
|
|
|
|
def __init__(self, df1, df2, validate_args=None):
|
|
self.df1, self.df2 = broadcast_all(df1, df2)
|
|
self._gamma1 = Gamma(self.df1 * 0.5, self.df1)
|
|
self._gamma2 = Gamma(self.df2 * 0.5, self.df2)
|
|
|
|
if isinstance(df1, Number) and isinstance(df2, Number):
|
|
batch_shape = torch.Size()
|
|
else:
|
|
batch_shape = self.df1.size()
|
|
super(FisherSnedecor, self).__init__(batch_shape, validate_args=validate_args)
|
|
|
|
def expand(self, batch_shape, _instance=None):
|
|
new = self._get_checked_instance(FisherSnedecor, _instance)
|
|
batch_shape = torch.Size(batch_shape)
|
|
new.df1 = self.df1.expand(batch_shape)
|
|
new.df2 = self.df2.expand(batch_shape)
|
|
new._gamma1 = self._gamma1.expand(batch_shape)
|
|
new._gamma2 = self._gamma2.expand(batch_shape)
|
|
super(FisherSnedecor, new).__init__(batch_shape, validate_args=False)
|
|
new._validate_args = self._validate_args
|
|
return new
|
|
|
|
@property
|
|
def mean(self):
|
|
df2 = self.df2.clone(memory_format=torch.contiguous_format)
|
|
df2[df2 <= 2] = nan
|
|
return df2 / (df2 - 2)
|
|
|
|
@property
|
|
def mode(self):
|
|
mode = (self.df1 - 2) / self.df1 * self.df2 / (self.df2 + 2)
|
|
mode[self.df1 <= 2] = nan
|
|
return mode
|
|
|
|
@property
|
|
def variance(self):
|
|
df2 = self.df2.clone(memory_format=torch.contiguous_format)
|
|
df2[df2 <= 4] = nan
|
|
return 2 * df2.pow(2) * (self.df1 + df2 - 2) / (self.df1 * (df2 - 2).pow(2) * (df2 - 4))
|
|
|
|
def rsample(self, sample_shape=torch.Size(())):
|
|
shape = self._extended_shape(sample_shape)
|
|
# X1 ~ Gamma(df1 / 2, 1 / df1), X2 ~ Gamma(df2 / 2, 1 / df2)
|
|
# Y = df2 * df1 * X1 / (df1 * df2 * X2) = X1 / X2 ~ F(df1, df2)
|
|
X1 = self._gamma1.rsample(sample_shape).view(shape)
|
|
X2 = self._gamma2.rsample(sample_shape).view(shape)
|
|
tiny = torch.finfo(X2.dtype).tiny
|
|
X2.clamp_(min=tiny)
|
|
Y = X1 / X2
|
|
Y.clamp_(min=tiny)
|
|
return Y
|
|
|
|
def log_prob(self, value):
|
|
if self._validate_args:
|
|
self._validate_sample(value)
|
|
ct1 = self.df1 * 0.5
|
|
ct2 = self.df2 * 0.5
|
|
ct3 = self.df1 / self.df2
|
|
t1 = (ct1 + ct2).lgamma() - ct1.lgamma() - ct2.lgamma()
|
|
t2 = ct1 * ct3.log() + (ct1 - 1) * torch.log(value)
|
|
t3 = (ct1 + ct2) * torch.log1p(ct3 * value)
|
|
return t1 + t2 - t3
|