tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.__init__()

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.__init__(alpha, beta, validate_args=False, allow_nan_stats=True, name='InverseGammaWithSoftplusAlphaBeta')

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.variance()

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.variance(name='variance') Variance. Additional documentation from InverseGamma: Variance for inverse gamma is defined only for alpha > 2. If self.allow_nan_stats is False, an exception will be raised rather than returning NaN.

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.validate_args

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

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.survival_function()

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.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.InverseGammaWithSoftplusAlphaBeta.std()

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

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.sample_n()

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.sample_n(n, seed=None, name='sample_n') Generate n samples. Additional documentation from InverseGamma: See the documentation for tf.random_gamma for more details. 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.InverseGammaWithSoftplusAlphaBeta.sample()

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

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.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.InverseGammaWithSoftplusAlphaBeta.pmf()

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

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