scvi.distributions.ZeroInflatedNegativeBinomial#
- class scvi.distributions.ZeroInflatedNegativeBinomial(total_count=None, probs=None, logits=None, mu=None, theta=None, zi_logits=None, scale=None, validate_args=False)[source]#
Zero-inflated negative binomial distribution.
One of the following parameterizations must be provided:
(1), (total_count, probs) where total_count is the number of failures until the experiment is stopped and probs the success probability. (2), (mu, theta) parameterization, which is the one used by scvi-tools. These parameters respectively control the mean and inverse dispersion of the distribution.
In the (mu, theta) parameterization, samples from the negative binomial are generated as follows:
\(w \sim \textrm{Gamma}(\underbrace{\theta}_{\text{shape}}, \underbrace{\theta/\mu}_{\text{rate}})\)
\(x \sim \textrm{Poisson}(w)\)
- Parameters:
total_count (
Tensor
|None
(default:None
)) – Number of failures until the experiment is stopped.probs (
Tensor
|None
(default:None
)) – The success probability.mu (
Tensor
|None
(default:None
)) – Mean of the distribution.theta (
Tensor
|None
(default:None
)) – Inverse dispersion.zi_logits (
Tensor
|None
(default:None
)) – 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#
Returns the shape over which parameters are batched. |
|
Returns the shape of a single sample (without batching). |
|
Returns the mean of the distribution. |
|
Returns the mode of the distribution. |
|
Returns the standard deviation of the distribution. |
|
Returns the variance of the distribution. |
|
ZI logits. |
|
Methods table#
|
Returns the cumulative density/mass function evaluated at value. |
|
Returns entropy of distribution, batched over batch_shape. |
|
Returns tensor containing all values supported by a discrete distribution. |
|
Returns a new distribution instance (or populates an existing instance provided by a derived class) with batch dimensions expanded to batch_shape. |
|
|
|
Returns the inverse cumulative density/mass function evaluated at value. |
|
Log probability. |
Returns perplexity of distribution, batched over batch_shape. |
|
|
Generates a sample_shape shaped reparameterized sample or sample_shape shaped batch of reparameterized samples if the distribution parameters are batched. |
|
Sample from the distribution. |
|
Generates n samples or n batches of samples if the distribution parameters are batched. |
|
Sets whether validation is enabled or disabled. |
Attributes#
- ZeroInflatedNegativeBinomial.arg_constraints = {'mu': Optional(GreaterThanEq(lower_bound=0)), 'scale': Optional(GreaterThanEq(lower_bound=0)), 'theta': Optional(GreaterThanEq(lower_bound=0)), 'zi_logits': Optional(Real())}#
- ZeroInflatedNegativeBinomial.batch_shape[source]#
Returns the shape over which parameters are batched.
- ZeroInflatedNegativeBinomial.event_shape[source]#
Returns the shape of a single sample (without batching).
- ZeroInflatedNegativeBinomial.has_enumerate_support = False#
- ZeroInflatedNegativeBinomial.has_rsample = False#
- ZeroInflatedNegativeBinomial.support = IntegerGreaterThan(lower_bound=0)#
Methods#
- ZeroInflatedNegativeBinomial.cdf(value)[source]#
Returns the cumulative density/mass function evaluated at value.
- Parameters:
value (Tensor)
- Return type:
Tensor
- ZeroInflatedNegativeBinomial.entropy()[source]#
Returns entropy of distribution, batched over batch_shape.
- Return type:
Tensor
- Returns:
Tensor of shape batch_shape.
- ZeroInflatedNegativeBinomial.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.
- ZeroInflatedNegativeBinomial.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.
- ZeroInflatedNegativeBinomial.icdf(value)[source]#
Returns the inverse cumulative density/mass function evaluated at value.
- Parameters:
value (Tensor)
- Return type:
Tensor
- ZeroInflatedNegativeBinomial.perplexity()[source]#
Returns perplexity of distribution, batched over batch_shape.
- Return type:
Tensor
- Returns:
Tensor of shape batch_shape.
- ZeroInflatedNegativeBinomial.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
- ZeroInflatedNegativeBinomial.sample(sample_shape=None)[source]#
Sample from the distribution.
- Return type:
Tensor
- ZeroInflatedNegativeBinomial.sample_n(n)[source]#
Generates n samples or n batches of samples if the distribution parameters are batched.
- Return type:
Tensor
- static ZeroInflatedNegativeBinomial.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 (viapython -O
). Validation may be expensive, so you may want to disable it once a model is working.