Click or drag to resize

GraphFusedBatchNormV3 Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation FusedBatchNormV3(
	Output x,
	Output scale,
	Output offset,
	Output mean,
	Output variance,
	float epsilon = 0.0001f,
	float exponential_avg_factor = 1f,
	string data_format = null,
	bool is_training = true,
	string opName = "FusedBatchNormV3"
)

Parameters

x
Type: Emgu.TFOutput
Input to the operation.
scale
Type: Emgu.TFOutput
Input to the operation.
offset
Type: Emgu.TFOutput
Input to the operation.
mean
Type: Emgu.TFOutput
Input to the operation.
variance
Type: Emgu.TFOutput
Input to the operation.
epsilon (Optional)
Type: SystemSingle
epsilon
exponential_avg_factor (Optional)
Type: SystemSingle
exponential avg factor
data_format (Optional)
Type: SystemString
data format
is_training (Optional)
Type: SystemBoolean
is training
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] y(type: DtInvalid). [1] batch_mean(type: DtInvalid). [2] batch_variance(type: DtInvalid). [3] reserve_space_1(type: DtInvalid). [4] reserve_space_2(type: DtInvalid). [5] reserve_space_3(type: DtInvalid).
See Also