Distribution is the abstract base class for probability distributions. Note: in Python, adding torch.Size objects works as concatenation Try for example: torch.Size((2, 1)) + torch.Size((1,))
Public fields
.validate_argswhether to validate arguments
has_rsamplewhether has an rsample
has_enumerate_supportwhether has enumerate support
Active bindings
batch_shapeReturns the shape over which parameters are batched.
event_shapeReturns the shape of a single sample (without batching). Returns a dictionary from argument names to
torch_Constraintobjects that should be satisfied by each argument of this distribution. Args that are not tensors need not appear in this dict.supportReturns a
torch_Constraintobject representing this distribution's support.meanReturns the mean on of the distribution
varianceReturns the variance of the distribution
stddevReturns the standard deviation of the distribution TODO: consider different message
Methods
Method new()
Initializes a distribution class.
Usage
Distribution$new(batch_shape = NULL, event_shape = NULL, validate_args = NULL)Method expand()
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 initialize, when an instance is first created.
Method sample()
Generates a sample_shape shaped sample or sample_shape shaped batch of
samples if the distribution parameters are batched.
Method rsample()
Generates a sample_shape shaped reparameterized sample or sample_shape shaped batch of reparameterized samples if the distribution parameters are batched.
Method icdf()
Returns the inverse cumulative density/mass function evaluated at
value.
@description
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-steplist(c(0, 0), c(1, 1), ...). With expand=FALSE, enumeration happens along dim 0, but with the remaining batch dimensions being singleton dimensions, list(c(0), c(1), ...)`.
Method enumerate_support()
Method .extended_shape()
Returns the size of the sample returned by the distribution, given
a sample_shape. Note, that the batch and event shapes of a distribution
instance are fixed at the time of construction. If this is empty, the
returned shape is upcast to (1,).
Method .validate_sample()
Argument validation for distribution methods such as log_prob,
cdf and icdf. The rightmost dimensions of a value to be
scored via these methods must agree with the distribution's batch
and event shapes.