tf.contrib.distributions.WishartCholesky.__init__(df, scale, cholesky_input_output_matrices=False, validate_args=False, allow_nan_stats=True, name='WishartCholesky')
Construct Wishart distributions.
Args:
-
df:floatordoubleTensor. Degrees of freedom, must be greater than or equal to dimension of the scale matrix. -
scale:floatordoubleTensor. The Cholesky factorization of the symmetric positive definite scale matrix of the distribution. -
cholesky_input_output_matrices:Boolean. Any function which whose input or output is a matrix assumes the input is Cholesky and returns a Cholesky factored matrix. Examplelog_pdfinput takes a Cholesky andsample_nreturns a Cholesky whencholesky_input_output_matrices=True. -
validate_args:Boolean, defaultFalse. Whether to validate input with asserts. Ifvalidate_argsisFalse, 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) is undefined for any batch member. If True, batch members with valid parameters leading to undefined statistics will returnNaNfor this statistic. -
name: The name scope to give class member ops.
Please login to continue.