Click or drag to resize

GraphQuantizedBatchNormWithGlobalNormalization Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation QuantizedBatchNormWithGlobalNormalization(
	Output t,
	Output t_min,
	Output t_max,
	Output m,
	Output m_min,
	Output m_max,
	Output v,
	Output v_min,
	Output v_max,
	Output beta,
	Output beta_min,
	Output beta_max,
	Output gamma,
	Output gamma_min,
	Output gamma_max,
	DataType out_type,
	float variance_epsilon,
	bool scale_after_normalization,
	string opName = "QuantizedBatchNormWithGlobalNormalization"
)

Parameters

t
Type: Emgu.TFOutput
Input to the operation.
t_min
Type: Emgu.TFOutput
Input to the operation.
t_max
Type: Emgu.TFOutput
Input to the operation.
m
Type: Emgu.TFOutput
Input to the operation.
m_min
Type: Emgu.TFOutput
Input to the operation.
m_max
Type: Emgu.TFOutput
Input to the operation.
v
Type: Emgu.TFOutput
Input to the operation.
v_min
Type: Emgu.TFOutput
Input to the operation.
v_max
Type: Emgu.TFOutput
Input to the operation.
beta
Type: Emgu.TFOutput
Input to the operation.
beta_min
Type: Emgu.TFOutput
Input to the operation.
beta_max
Type: Emgu.TFOutput
Input to the operation.
gamma
Type: Emgu.TFOutput
Input to the operation.
gamma_min
Type: Emgu.TFOutput
Input to the operation.
gamma_max
Type: Emgu.TFOutput
Input to the operation.
out_type
Type: Emgu.TFDataType
out type
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). [1] result_min(type: DtFloat). [2] result_max(type: DtFloat).
See Also