Click or drag to resize

GraphQuantizedMatMulWithBiasAndDequantize Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation QuantizedMatMulWithBiasAndDequantize(
	Output a,
	Output b,
	Output bias,
	Output min_a,
	Output max_a,
	Output min_b,
	Output max_b,
	Output min_freezed_output,
	Output max_freezed_output,
	DataType Toutput,
	bool transpose_a = false,
	bool transpose_b = false,
	string input_quant_mode = null,
	string opName = "QuantizedMatMulWithBiasAndDequantize"
)

Parameters

a
Type: Emgu.TFOutput
Input to the operation.
b
Type: Emgu.TFOutput
Input to the operation.
bias
Type: Emgu.TFOutput
Input to the operation.
min_a
Type: Emgu.TFOutput
Input to the operation.
max_a
Type: Emgu.TFOutput
Input to the operation.
min_b
Type: Emgu.TFOutput
Input to the operation.
max_b
Type: Emgu.TFOutput
Input to the operation.
min_freezed_output
Type: Emgu.TFOutput
Input to the operation.
max_freezed_output
Type: Emgu.TFOutput
Input to the operation.
Toutput
Type: Emgu.TFDataType
Toutput
transpose_a (Optional)
Type: SystemBoolean
transpose a
transpose_b (Optional)
Type: SystemBoolean
transpose b
input_quant_mode (Optional)
Type: SystemString
input quant mode
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] out(type: DtInvalid).
See Also