tf.nn.normalize_moments(
counts,
mean_ss,
variance_ss,
shift,
name=None
)
Defined in tensorflow/python/ops/nn_impl.py
.
Calculate the mean and variance of based on the sufficient statistics.
Args:
counts
: ATensor
containing the total count of the data (one value).mean_ss
: ATensor
containing the mean sufficient statistics: the (possibly shifted) sum of the elements to average over.variance_ss
: ATensor
containing the variance sufficient statistics: the (possibly shifted) squared sum of the data to compute the variance over.shift
: ATensor
containing the value by which the data is shifted for numerical stability, orNone
if no shift was performed.name
: Name used to scope the operations that compute the moments.
Returns:
Two Tensor
objects: mean
and variance
.