Distributions
GaussianDistribution
Bases: Distribution
Multivariate Gaussian distribution with a linear operator scale matrix.
Parameters:
-
loc
(Optional[Float[Array, ' N']]
, default:None
) βthe mean of the distribution as an array of shape (n_points,).
-
scale
(Optional[LinearOperator]
, default:None
) βthe scale matrix of the distribution as a LinearOperator object.
log_prob
Calculates the log pdf of the multivariate Gaussian.
Parameters:
-
y
(Float[Array, ' N']
) βthe value of which to calculate the log probability.
Returns:
-
ScalarFloat
βThe log probability of the value as a scalar array.