tf.contrib.distributions.Binomial.pdf()

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

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

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

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

tf.contrib.distributions.Binomial.p

tf.contrib.distributions.Binomial.p Probability of success.

tf.contrib.distributions.Binomial.name

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

tf.contrib.distributions.Binomial.n

tf.contrib.distributions.Binomial.n Number of trials.

tf.contrib.distributions.Binomial.mode()

tf.contrib.distributions.Binomial.mode(name='mode') Mode. Additional documentation from Binomial: Note that when (n + 1) * p is an integer, there are actually two modes. Namely, (n + 1) * p and (n + 1) * p - 1 are both modes. Here we return only the larger of the two modes.

tf.contrib.distributions.Binomial.mean()

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

tf.contrib.distributions.Binomial.log_survival_function()

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