Click or drag to resize

GraphQuantizedInstanceNorm Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation QuantizedInstanceNorm(
	Output x,
	Output x_min,
	Output x_max,
	bool output_range_given = false,
	float given_y_min = 0f,
	float given_y_max = 0f,
	float variance_epsilon = 1E-05f,
	float min_separation = 0.001f,
	string opName = "QuantizedInstanceNorm"
)

Parameters

x
Type: Emgu.TFOutput
Input to the operation.
x_min
Type: Emgu.TFOutput
Input to the operation.
x_max
Type: Emgu.TFOutput
Input to the operation.
output_range_given (Optional)
Type: SystemBoolean
output range given
given_y_min (Optional)
Type: SystemSingle
given y min
given_y_max (Optional)
Type: SystemSingle
given y max
variance_epsilon (Optional)
Type: SystemSingle
variance epsilon
min_separation (Optional)
Type: SystemSingle
min separation
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] y(type: DtInvalid). [1] y_min(type: DtFloat). [2] y_max(type: DtFloat).
See Also