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.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.bayesflow.stochastic_tensor.BetaWithSoftplusABTensor.value()

tf.contrib.bayesflow.stochastic_tensor.BetaWithSoftplusABTensor.value(name='value')

tf.inv()

tf.inv(x, name=None) Computes the reciprocal of x element-wise. I.e., \(y = 1 / x\). Args: x: A Tensor. Must be one of the following types: half, float32, float64, int32, int64, complex64, complex128. name: A name for the operation (optional). Returns: A Tensor. Has the same type as x.

tf.contrib.bayesflow.stochastic_tensor.CategoricalTensor.clone()

tf.contrib.bayesflow.stochastic_tensor.CategoricalTensor.clone(name=None, **dist_args)

tf.contrib.distributions.NormalWithSoftplusSigma.variance()

tf.contrib.distributions.NormalWithSoftplusSigma.variance(name='variance') Variance.

tf.contrib.distributions.MultivariateNormalDiag.log_sigma_det()

tf.contrib.distributions.MultivariateNormalDiag.log_sigma_det(name='log_sigma_det') Log of determinant of covariance matrix.

tf.WholeFileReader

class tf.WholeFileReader A Reader that outputs the entire contents of a file as a value. To use, enqueue filenames in a Queue. The output of Read will be a filename (key) and the contents of that file (value). See ReaderBase for supported methods.

tf.contrib.distributions.BernoulliWithSigmoidP.allow_nan_stats

tf.contrib.distributions.BernoulliWithSigmoidP.allow_nan_stats Python boolean describing behavior when a stat is undefined. Stats return +/- infinity when it makes sense. E.g., the variance of a Cauchy distribution is infinity. However, sometimes the statistic is undefined, e.g., if a distribution's pdf does not achieve a maximum within the support of the distribution, the mode is undefined. If the mean is undefined, then by definition the variance is undefined. E.g. the mean for Student's T f

tensorflow::Tensor::DebugString()

string tensorflow::Tensor::DebugString() const A human-readable summary of the tensor suitable for debugging.