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: ATensorcontaining the total count of the data (one value).mean_ss: ATensorcontaining the mean sufficient statistics: the (possibly shifted) sum of the elements to average over.variance_ss: ATensorcontaining the variance sufficient statistics: the (possibly shifted) squared sum of the data to compute the variance over.shift: ATensorcontaining the value by which the data is shifted for numerical stability, orNoneif no shift was performed.name: Name used to scope the operations that compute the moments.
Returns:
Two Tensor objects: mean and variance.