tf.contrib.distributions.Beta.pdf()

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

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

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

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

tf.contrib.distributions.Beta.name

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

tf.contrib.distributions.Beta.mode()

tf.contrib.distributions.Beta.mode(name='mode') Mode. Additional documentation from Beta: Note that the mode for the Beta distribution is only defined when a > 1, b > 1. This returns the mode when a > 1 and b > 1, and NaN otherwise. If self.allow_nan_stats is False, an exception will be raised rather than returning NaN.

tf.contrib.distributions.Beta.mean()

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

tf.contrib.distributions.Beta.log_survival_function()

tf.contrib.distributions.Beta.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 Tensor

tf.contrib.distributions.Beta.log_prob()

tf.contrib.distributions.Beta.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.Beta.log_pmf()

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