tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.log_pmf()

tf.contrib.distributions.InverseGammaWithSoftplusAlphaBeta.log_pmf(value, name='log_pmf') Log probability mass function. Args: value: float or double Tensor. name: The name to give this op. Returns: log_pmf: a Tensor of shape sample_shape(x) + self.batch_shape with values of type self.dtype. Raises: TypeError: if is_continuous.

tf.contrib.learn.monitors.NanLoss

class tf.contrib.learn.monitors.NanLoss NaN Loss monitor. Monitors loss and stops training if loss is NaN. Can either fail with exception or just stop training.

tf.contrib.distributions.NormalWithSoftplusSigma.std()

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

tf.contrib.distributions.MultivariateNormalDiagWithSoftplusStDev.mode()

tf.contrib.distributions.MultivariateNormalDiagWithSoftplusStDev.mode(name='mode') Mode.

tf.contrib.distributions.NormalWithSoftplusSigma.mode()

tf.contrib.distributions.NormalWithSoftplusSigma.mode(name='mode') Mode.

tf.contrib.distributions.NormalWithSoftplusSigma.mean()

tf.contrib.distributions.NormalWithSoftplusSigma.mean(name='mean') Mean.

tf.contrib.distributions.NormalWithSoftplusSigma.mu

tf.contrib.distributions.NormalWithSoftplusSigma.mu Distribution parameter for the mean.

tf.errors.CancelledError

class tf.errors.CancelledError Raised when an operation or step is cancelled. For example, a long-running operation (e.g. queue.enqueue() may be cancelled by running another operation (e.g. queue.close(cancel_pending_enqueues=True), or by closing the session. A step that is running such a long-running operation will fail by raising CancelledError.

tf.contrib.distributions.StudentTWithAbsDfSoftplusSigma.std()

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

tf.contrib.distributions.Normal.cdf()

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