tf.contrib.distributions.InverseGamma.sample()

tf.contrib.distributions.InverseGamma.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.InverseGamma.prob()

tf.contrib.distributions.InverseGamma.prob(value, name='prob') Probability density/mass function (depending on is_continuous). 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.

tf.contrib.distributions.InverseGamma.pmf()

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

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

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

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

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

tf.contrib.distributions.InverseGamma.name

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

tf.contrib.distributions.InverseGamma.mode()

tf.contrib.distributions.InverseGamma.mode(name='mode') Mode. Additional documentation from InverseGamma: The mode of an inverse gamma distribution is beta / (alpha + 1).

tf.contrib.distributions.InverseGamma.mean()

tf.contrib.distributions.InverseGamma.mean(name='mean') Mean. Additional documentation from InverseGamma: The mean of an inverse gamma distribution is beta / (alpha - 1), when alpha > 1, and NaN otherwise. If self.allow_nan_stats is False, an exception will be raised rather than returning NaN