Click or drag to resize

GraphFakeQuantWithMinMaxVarsGradient Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation FakeQuantWithMinMaxVarsGradient(
	Output gradients,
	Output inputs,
	Output min,
	Output max,
	long num_bits = 8,
	bool narrow_range = false,
	string opName = "FakeQuantWithMinMaxVarsGradient"
)

Parameters

gradients
Type: Emgu.TFOutput
Input to the operation.
inputs
Type: Emgu.TFOutput
Input to the operation.
min
Type: Emgu.TFOutput
Input to the operation.
max
Type: Emgu.TFOutput
Input to the operation.
num_bits (Optional)
Type: SystemInt64
num bits
narrow_range (Optional)
Type: SystemBoolean
narrow range
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] backprops_wrt_input(type: DtFloat). [1] backprop_wrt_min(type: DtFloat). [2] backprop_wrt_max(type: DtFloat).
See Also