tf.contrib.distributions.WishartFull.prob()

tf.contrib.distributions.WishartFull.prob(value, name='prob') Probability density/mass function (depending on is_continuous). Args: value: float or double Tensor. name: The name to give this op. Returns: prob: a Tensor of shape sample_shape(x) + self.batch_shape with values of type self.dtype.

tf.contrib.distributions.WishartFull.pmf()

tf.contrib.distributions.WishartFull.pmf(value, name='pmf') Probability mass function. Args: value: float or double Tensor. name: The name to give this op. Returns: pmf: a Tensor of shape sample_shape(x) + self.batch_shape with values of type self.dtype. Raises: TypeError: if is_continuous.

tf.contrib.distributions.WishartFull.pdf()

tf.contrib.distributions.WishartFull.pdf(value, name='pdf') Probability density function. Args: value: float or double Tensor. name: The name to give this op. Returns: prob: a Tensor of shape sample_shape(x) + self.batch_shape with values of type self.dtype. Raises: TypeError: if not is_continuous.

tf.contrib.distributions.WishartFull.param_static_shapes()

tf.contrib.distributions.WishartFull.param_static_shapes(cls, sample_shape) param_shapes with static (i.e. TensorShape) shapes. Args: sample_shape: TensorShape or python list/tuple. Desired shape of a call to sample(). Returns: dict of parameter name to TensorShape. Raises: ValueError: if sample_shape is a TensorShape and is not fully defined.

tf.contrib.distributions.WishartFull.param_shapes()

tf.contrib.distributions.WishartFull.param_shapes(cls, sample_shape, name='DistributionParamShapes') Shapes of parameters given the desired shape of a call to sample(). Subclasses should override static method _param_shapes. Args: sample_shape: Tensor or python list/tuple. Desired shape of a call to sample(). name: name to prepend ops with. Returns: dict of parameter name to Tensor shapes.

tf.contrib.distributions.WishartFull.parameters

tf.contrib.distributions.WishartFull.parameters Dictionary of parameters used by this Distribution.

tf.contrib.distributions.WishartFull.name

tf.contrib.distributions.WishartFull.name Name prepended to all ops created by this Distribution.

tf.contrib.distributions.WishartFull.mode()

tf.contrib.distributions.WishartFull.mode(name='mode') Mode.

tf.contrib.distributions.WishartFull.mean_log_det()

tf.contrib.distributions.WishartFull.mean_log_det(name='mean_log_det') Computes E[log(det(X))] under this Wishart distribution.

tf.contrib.distributions.WishartFull.mean()

tf.contrib.distributions.WishartFull.mean(name='mean') Mean.