tf.contrib.distributions.DirichletMultinomial.is_reparameterized

tf.contrib.distributions.DirichletMultinomial.is_reparameterized

tf.contrib.distributions.DirichletMultinomial.is_continuous

tf.contrib.distributions.DirichletMultinomial.is_continuous

tf.contrib.distributions.DirichletMultinomial.get_event_shape()

tf.contrib.distributions.DirichletMultinomial.get_event_shape() Shape of a single sample from a single batch as a TensorShape. Same meaning as event_shape. May be only partially defined. Returns: event_shape: TensorShape, possibly unknown.

tf.contrib.distributions.DirichletMultinomial.get_batch_shape()

tf.contrib.distributions.DirichletMultinomial.get_batch_shape() Shape of a single sample from a single event index as a TensorShape. Same meaning as batch_shape. May be only partially defined. Returns: batch_shape: TensorShape, possibly unknown.

tf.contrib.distributions.DirichletMultinomial.event_shape()

tf.contrib.distributions.DirichletMultinomial.event_shape(name='event_shape') Shape of a single sample from a single batch as a 1-D int32 Tensor. Args: name: name to give to the op Returns: event_shape: Tensor.

tf.contrib.distributions.DirichletMultinomial.entropy()

tf.contrib.distributions.DirichletMultinomial.entropy(name='entropy') Shanon entropy in nats.

tf.contrib.distributions.DirichletMultinomial.dtype

tf.contrib.distributions.DirichletMultinomial.dtype The DType of Tensors handled by this Distribution.

tf.contrib.distributions.DirichletMultinomial.cdf()

tf.contrib.distributions.DirichletMultinomial.cdf(value, name='cdf') Cumulative distribution function. Given random variable X, the cumulative distribution function cdf is: cdf(x) := P[X <= x] Args: value: float or double Tensor. name: The name to give this op. Returns: cdf: a Tensor of shape sample_shape(x) + self.batch_shape with values of type self.dtype.

tf.contrib.distributions.DirichletMultinomial.batch_shape()

tf.contrib.distributions.DirichletMultinomial.batch_shape(name='batch_shape') Shape of a single sample from a single event index as a 1-D Tensor. The product of the dimensions of the batch_shape is the number of independent distributions of this kind the instance represents. Args: name: name to give to the op Returns: batch_shape: Tensor.

tf.contrib.distributions.DirichletMultinomial.alpha_sum

tf.contrib.distributions.DirichletMultinomial.alpha_sum Summation of alpha parameter.