Click or drag to resize

GraphFusedBatchNormGradV3 Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation FusedBatchNormGradV3(
	Output y_backprop,
	Output x,
	Output scale,
	Output reserve_space_1,
	Output reserve_space_2,
	Output reserve_space_3,
	float epsilon = 0.0001f,
	string data_format = null,
	bool is_training = true,
	string opName = "FusedBatchNormGradV3"
)

Parameters

y_backprop
Type: Emgu.TFOutput
Input to the operation.
x
Type: Emgu.TFOutput
Input to the operation.
scale
Type: Emgu.TFOutput
Input to the operation.
reserve_space_1
Type: Emgu.TFOutput
Input to the operation.
reserve_space_2
Type: Emgu.TFOutput
Input to the operation.
reserve_space_3
Type: Emgu.TFOutput
Input to the operation.
epsilon (Optional)
Type: SystemSingle
epsilon
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] x_backprop(type: DtInvalid). [1] scale_backprop(type: DtInvalid). [2] offset_backprop(type: DtInvalid). [3] reserve_space_4(type: DtInvalid). [4] reserve_space_5(type: DtInvalid).
See Also