tf.contrib.distributions.MultivariateNormalFull.__init__(mu, sigma, validate_args=False, allow_nan_stats=True, name='MultivariateNormalFull')
Multivariate Normal distributions on R^k
.
User must provide means mu
and sigma
, the mean and covariance.
Args:
-
mu
:(N+1)-D
floating point tensor with shape[N1,...,Nb, k]
,b >= 0
. -
sigma
:(N+2)-D
Tensor
with samedtype
asmu
and shape[N1,...,Nb, k, k]
. Each batch member must be positive definite. -
validate_args
:Boolean
, defaultFalse
. Whether to validate input with asserts. Ifvalidate_args
isFalse
, and the inputs are invalid, correct behavior is not guaranteed. -
allow_nan_stats
:Boolean
, defaultTrue
. IfFalse
, raise an exception if a statistic (e.g. mean/mode/etc...) is undefined for any batch member IfTrue
, batch members with valid parameters leading to undefined statistics will return NaN for this statistic. -
name
: The name to give Ops created by the initializer.
Raises:
-
TypeError
: Ifmu
andsigma
are different dtypes.
Please login to continue.