tf.compat.v1.nn.fused_batch_norm

View source on GitHub

Batch normalization.

tf.compat.v1.nn.fused_batch_norm(
    x, scale, offset, mean=None, variance=None, epsilon=0.001, data_format='NHWC',
    is_training=True, name=None
)

See Source: Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift; S. Ioffe, C. Szegedy.

Args:

Returns:

Raises: