Click or drag to resize

GraphQuantizedBiasAdd Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation QuantizedBiasAdd(
	Output input,
	Output bias,
	Output min_input,
	Output max_input,
	Output min_bias,
	Output max_bias,
	DataType out_type,
	string opName = "QuantizedBiasAdd"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation.
bias
Type: Emgu.TFOutput
Input to the operation.
min_input
Type: Emgu.TFOutput
Input to the operation.
max_input
Type: Emgu.TFOutput
Input to the operation.
min_bias
Type: Emgu.TFOutput
Input to the operation.
max_bias
Type: Emgu.TFOutput
Input to the operation.
out_type
Type: Emgu.TFDataType
out type
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid). [1] min_out(type: DtFloat). [2] max_out(type: DtFloat).
See Also