scvi.distributions.ZeroInflatedGamma#

class scvi.distributions.ZeroInflatedGamma(concentration, rate, zi_logits, scale=None, validate_args=False)[source]#

Zero-inflated Gamma distribution.

A mixture distribution of a point mass at zero and a Gamma distribution. This is ideal for continuous positive data with excess zeros.

In the (concentration, rate, zi_logits) parameterization, samples are generated as follows:

  1. \(\pi = \textrm{sigmoid}(\texttt{zi\_logits})\)

  2. \(b \sim \textrm{Bernoulli}(\pi)\)

  3. If \(b = 1\): \(x = 0\)

  4. If \(b = 0\): \(x \sim \textrm{Gamma}(\alpha, \beta)\)

The probability density function is:

\[\begin{split}f(x; \alpha, \beta, \pi) = \begin{cases} \pi & \text{if } x = 0 \\ (1 - \pi) \cdot f_{\Gamma}(x) & \text{if } x > 0 \end{cases}\end{split}\]

where \(f_{\Gamma}(x; \alpha, \beta) = \frac{\beta^\alpha}{\Gamma(\alpha)} x^{\alpha-1} e^{-\beta x}\) is the Gamma density.

Parameters:
  • concentration (Tensor) – Shape parameter (α > 0) of the Gamma distribution.

  • rate (Tensor) – Rate parameter (β > 0) of the Gamma distribution.

  • zi_logits (Tensor) – Logits scale of zero inflation probability.

  • scale (Tensor | None (default: None)) – Normalized mean expression of the distribution.

  • validate_args (bool (default: False)) – Raise ValueError if arguments do not match constraints.

Attributes table#

arg_constraints

batch_shape

Returns the shape over which parameters are batched.

event_shape

Returns the shape of a single sample (without batching).

has_enumerate_support

has_rsample

mean

Mean of the zero-inflated distribution.

mode

Returns the mode of the distribution.

stddev

Returns the standard deviation of the distribution.

support

variance

Variance of the zero-inflated distribution.

zi_logits

ZI logits.

zi_probs

ZI probabilities.

Methods table#

cdf(value)

Returns the cumulative density/mass function evaluated at value.

entropy()

Method to compute the entropy using Bregman divergence of the log normalizer.

enumerate_support([expand])

Returns tensor containing all values supported by a discrete distribution.

expand(batch_shape[, _instance])

Returns a new distribution instance (or populates an existing instance provided by a derived class) with batch dimensions expanded to batch_shape.

get_normalized(key)

Get normalized values.

icdf(value)

Returns the inverse cumulative density/mass function evaluated at value.

log_prob(value)

Log probability.

perplexity()

Returns perplexity of distribution, batched over batch_shape.

rsample([sample_shape])

Generates a sample_shape shaped reparameterized sample or sample_shape shaped batch of reparameterized samples if the distribution parameters are batched.

sample([sample_shape])

Sample from the distribution.

sample_n(n)

Generates n samples or n batches of samples if the distribution parameters are batched.

set_default_validate_args(value)

Sets whether validation is enabled or disabled.

Attributes#

ZeroInflatedGamma.arg_constraints = {'concentration': Optional(GreaterThan(lower_bound=0)), 'rate': Optional(GreaterThan(lower_bound=0)), 'zi_logits': Optional(Real())}#
ZeroInflatedGamma.batch_shape[source]#

Returns the shape over which parameters are batched.

ZeroInflatedGamma.event_shape[source]#

Returns the shape of a single sample (without batching).

ZeroInflatedGamma.has_enumerate_support = False#
ZeroInflatedGamma.has_rsample = True#
ZeroInflatedGamma.mean[source]#

Mean of the zero-inflated distribution.

ZeroInflatedGamma.mode[source]#
ZeroInflatedGamma.stddev[source]#

Returns the standard deviation of the distribution.

ZeroInflatedGamma.support = GreaterThanEq(lower_bound=0.0)#
ZeroInflatedGamma.variance[source]#

Variance of the zero-inflated distribution.

ZeroInflatedGamma.zi_logits[source]#

ZI logits.

ZeroInflatedGamma.zi_probs[source]#

ZI probabilities.

Methods#

ZeroInflatedGamma.cdf(value)[source]#

Returns the cumulative density/mass function evaluated at value.

Parameters:

value (Tensor)

ZeroInflatedGamma.entropy()[source]#

Method to compute the entropy using Bregman divergence of the log normalizer.

ZeroInflatedGamma.enumerate_support(expand=True)[source]#

Returns tensor containing all values supported by a discrete distribution. The result will enumerate over dimension 0, so the shape of the result will be (cardinality,) + batch_shape + event_shape (where event_shape = () for univariate distributions).

Note that this enumerates over all batched tensors in lock-step [[0, 0], [1, 1], …]. With expand=False, enumeration happens along dim 0, but with the remaining batch dimensions being singleton dimensions, [[0], [1], ...

To iterate over the full Cartesian product use itertools.product(m.enumerate_support()).

Parameters:

expand (bool) – whether to expand the support over the batch dims to match the distribution’s batch_shape.

Return type:

Tensor

Returns:

Tensor iterating over dimension 0.

ZeroInflatedGamma.expand(batch_shape, _instance=None)[source]#

Returns a new distribution instance (or populates an existing instance provided by a derived class) with batch dimensions expanded to batch_shape. This method calls expand on the distribution’s parameters. As such, this does not allocate new memory for the expanded distribution instance. Additionally, this does not repeat any args checking or parameter broadcasting in __init__.py, when an instance is first created.

Parameters:
  • batch_shape (torch.Size) – the desired expanded size.

  • _instance (default: None) – new instance provided by subclasses that need to override .expand.

Returns:

New distribution instance with batch dimensions expanded to batch_size.

ZeroInflatedGamma.get_normalized(key)[source]#

Get normalized values.

Return type:

Tensor

ZeroInflatedGamma.icdf(value)[source]#

Returns the inverse cumulative density/mass function evaluated at value.

Parameters:

value (Tensor)

Return type:

Tensor

ZeroInflatedGamma.log_prob(value)[source]#

Log probability.

Return type:

Tensor

ZeroInflatedGamma.perplexity()[source]#

Returns perplexity of distribution, batched over batch_shape.

Return type:

Tensor

Returns:

Tensor of shape batch_shape.

ZeroInflatedGamma.rsample(sample_shape=())[source]#

Generates a sample_shape shaped reparameterized sample or sample_shape shaped batch of reparameterized samples if the distribution parameters are batched.

Return type:

Tensor

ZeroInflatedGamma.sample(sample_shape=None)[source]#

Sample from the distribution.

Return type:

Tensor

ZeroInflatedGamma.sample_n(n)[source]#

Generates n samples or n batches of samples if the distribution parameters are batched.

Return type:

Tensor

static ZeroInflatedGamma.set_default_validate_args(value)[source]#

Sets whether validation is enabled or disabled.

The default behavior mimics Python’s assert statement: validation is on by default, but is disabled if Python is run in optimized mode (via python -O). Validation may be expensive, so you may want to disable it once a model is working.

Parameters:

value (bool) – Whether to enable validation.

Return type:

None