tf.compat.v1.nn.fused_batch_norm
Stay organized with collections
Save and categorize content based on your preferences.
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 |
x
|
Input Tensor of 4 dimensions.
|
scale
|
A Tensor of 1 dimension for scaling.
|
offset
|
A Tensor of 1 dimension for bias.
|
mean
|
A Tensor of 1 dimension for population mean used for inference.
|
variance
|
A Tensor of 1 dimension for population variance
used for inference.
|
epsilon
|
A small float number added to the variance of x.
|
data_format
|
The data format for x. Either "NHWC" (default) or "NCHW".
|
is_training
|
A bool value to specify if the operation is used for
training or inference.
|
name
|
A name for this operation (optional).
|
Returns |
y
|
A 4D Tensor for the normalized, scaled, offsetted x.
|
batch_mean
|
A 1D Tensor for the mean of x.
|
batch_var
|
A 1D Tensor for the variance of x.
|
Raises |
ValueError
|
If mean or variance is not None when is_training is True.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[]]