Applies batch normalization on x given mean, var, beta and gamma. I.e. returns: `output = (x - mean) / (sqrt(var) + epsilon) * gamma + beta` Arguments: x: Input tensor or variable. mean: Mean of batch. var: Variance of batch. beta: Tensor with which to center the inpu
(x, mean, var, beta, gamma, axis=-1, epsilon=1e-3)
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected