Click or drag to resize

GraphBatchNormWithGlobalNormalization Method

https://www.emgu.com/wiki/index.php/Emgu_TF
BatchNormWithGlobalNormalization

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation BatchNormWithGlobalNormalization(
	Output t,
	Output m,
	Output v,
	Output beta,
	Output gamma,
	float variance_epsilon,
	bool scale_after_normalization,
	string opName = "BatchNormWithGlobalNormalization"
)

Parameters

t
Type: Emgu.TFOutput
Input to the operation.
m
Type: Emgu.TFOutput
Input to the operation.
v
Type: Emgu.TFOutput
Input to the operation.
beta
Type: Emgu.TFOutput
Input to the operation.
gamma
Type: Emgu.TFOutput
Input to the operation.
variance_epsilon
Type: SystemSingle
variance epsilon
scale_after_normalization
Type: SystemBoolean
scale after normalization
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] result(type: DtInvalid).
See Also