tf.contrib.distributions.MultivariateNormalFull.pdf()

tf.contrib.distributions.MultivariateNormalFull.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.MultivariateNormalFull.param_static_shapes()

tf.contrib.distributions.MultivariateNormalFull.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.MultivariateNormalFull.param_shapes()

tf.contrib.distributions.MultivariateNormalFull.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.MultivariateNormalFull.parameters

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

tf.contrib.distributions.MultivariateNormalFull.name

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

tf.contrib.distributions.MultivariateNormalFull.mu

tf.contrib.distributions.MultivariateNormalFull.mu

tf.contrib.distributions.MultivariateNormalFull.mode()

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

tf.contrib.distributions.MultivariateNormalFull.mean()

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

tf.contrib.distributions.MultivariateNormalFull.log_survival_function()

tf.contrib.distributions.MultivariateNormalFull.log_survival_function(value, name='log_survival_function') Log survival function. Given random variable X, the survival function is defined: log_survival_function(x) = Log[ P[X > x] ] = Log[ 1 - P[X <= x] ] = Log[ 1 - cdf(x) ] Typically, different numerical approximations can be used for the log survival function, which are more accurate than 1 - cdf(x) when x >> 1. Args: value: floa

tf.contrib.distributions.MultivariateNormalFull.log_sigma_det()

tf.contrib.distributions.MultivariateNormalFull.log_sigma_det(name='log_sigma_det') Log of determinant of covariance matrix.