tf.contrib.distributions.Bernoulli.entropy()

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

tf.contrib.distributions.ExponentialWithSoftplusLam.parameters

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

tf.contrib.distributions.BetaWithSoftplusAB.log_prob()

tf.contrib.distributions.BetaWithSoftplusAB.log_prob(value, name='log_prob') Log probability density/mass function (depending on is_continuous). Args: value: float or double Tensor. name: The name to give this op. Returns: log_prob: a Tensor of shape sample_shape(x) + self.batch_shape with values of type self.dtype.

tf.contrib.distributions.Dirichlet.pmf()

tf.contrib.distributions.Dirichlet.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.TFRecordReader.reset()

tf.TFRecordReader.reset(name=None) Restore a reader to its initial clean state. Args: name: A name for the operation (optional). Returns: The created Operation.

tf.contrib.learn.TensorFlowRNNRegressor.config

tf.contrib.learn.TensorFlowRNNRegressor.config

tf.contrib.distributions.Bernoulli.pdf()

tf.contrib.distributions.Bernoulli.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.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.learn.monitors.CheckpointSaver.epoch_end()

tf.contrib.learn.monitors.CheckpointSaver.epoch_end(epoch) End epoch. Args: epoch: int, the epoch number. Raises: ValueError: if we've not begun an epoch, or epoch number does not match.