tf.contrib.distributions.DirichletMultinomial.validate_args

tf.contrib.distributions.DirichletMultinomial.validate_args Python boolean indicated possibly expensive checks are enabled.

tf.contrib.distributions.DirichletMultinomial.survival_function()

tf.contrib.distributions.DirichletMultinomial.survival_function(value, name='survival_function') Survival function. Given random variable X, the survival function is defined: survival_function(x) = P[X > x] = 1 - P[X <= x] = 1 - cdf(x). Args: value: float or double Tensor. name: The name to give this op. Returns: Tensorof shapesample_shape(x) + self.batch_shapewith values of typeself.dtype`.

tf.contrib.distributions.DirichletMultinomial.std()

tf.contrib.distributions.DirichletMultinomial.std(name='std') Standard deviation.

tf.contrib.distributions.DirichletMultinomial.sample_n()

tf.contrib.distributions.DirichletMultinomial.sample_n(n, seed=None, name='sample_n') Generate n samples. Args: n: Scalar Tensor of type int32 or int64, the number of observations to sample. seed: Python integer seed for RNG name: name to give to the op. Returns: samples: a Tensor with a prepended dimension (n,). Raises: TypeError: if n is not an integer type.

tf.contrib.distributions.DirichletMultinomial.sample()

tf.contrib.distributions.DirichletMultinomial.sample(sample_shape=(), seed=None, name='sample') Generate samples of the specified shape. Note that a call to sample() without arguments will generate a single sample. Args: sample_shape: 0D or 1D int32 Tensor. Shape of the generated samples. seed: Python integer seed for RNG name: name to give to the op. Returns: samples: a Tensor with prepended dimensions sample_shape.

tf.contrib.distributions.DirichletMultinomial.prob()

tf.contrib.distributions.DirichletMultinomial.prob(value, name='prob') Probability density/mass function (depending on is_continuous). Additional documentation from DirichletMultinomial: For each batch of counts [n_1,...,n_k], P[counts] is the probability that after sampling n draws from this Dirichlet Multinomial distribution, the number of draws falling in class j is n_j. Note that different sequences of draws can result in the same counts, thus the probability includes a combinatorial coeff

tf.contrib.distributions.DirichletMultinomial.pmf()

tf.contrib.distributions.DirichletMultinomial.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.DirichletMultinomial.pdf()

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

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

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