tf.contrib.distributions.StudentT.mu

tf.contrib.distributions.StudentT.mu Locations of these Student's t distribution(s).

tf.contrib.distributions.StudentT.mode()

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

tf.contrib.distributions.StudentT.mean()

tf.contrib.distributions.StudentT.mean(name='mean') Mean. Additional documentation from StudentT: The mean of Student's T equals mu if df > 1, otherwise it is NaN. If self.allow_nan_stats=True, then an exception will be raised rather than returning NaN.

tf.contrib.distributions.StudentT.log_survival_function()

tf.contrib.distributions.StudentT.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: float or double Te

tf.contrib.distributions.StudentT.log_prob()

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

tf.contrib.distributions.StudentT.log_pmf()

tf.contrib.distributions.StudentT.log_pmf(value, name='log_pmf') Log probability mass function. Args: value: float or double Tensor. name: The name to give this op. Returns: log_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.StudentT.log_pdf()

tf.contrib.distributions.StudentT.log_pdf(value, name='log_pdf') Log probability density function. Args: value: float or double Tensor. name: The name to give this op. Returns: log_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.StudentT.log_cdf()

tf.contrib.distributions.StudentT.log_cdf(value, name='log_cdf') Log cumulative distribution function. Given random variable X, the cumulative distribution function cdf is: log_cdf(x) := Log[ P[X <= x] ] Often, a numerical approximation can be used for log_cdf(x) that yields a more accurate answer than simply taking the logarithm of the cdf when x << -1. Args: value: float or double Tensor. name: The name to give this op. Returns: logcdf: a Tensor of shape sample_shape(x) + self

tf.contrib.distributions.StudentT.is_reparameterized

tf.contrib.distributions.StudentT.is_reparameterized

tf.contrib.distributions.StudentT.is_continuous

tf.contrib.distributions.StudentT.is_continuous