Click or drag to resize

GraphQuantizedConv2DWithBiasAndRequantize Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation QuantizedConv2DWithBiasAndRequantize(
	Output input,
	Output filter,
	Output bias,
	Output min_input,
	Output max_input,
	Output min_filter,
	Output max_filter,
	Output min_freezed_output,
	Output max_freezed_output,
	long[] strides,
	string padding,
	Nullable<DataType> out_type = null,
	long[] dilations = null,
	long[] padding_list = null,
	string opName = "QuantizedConv2DWithBiasAndRequantize"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation.
filter
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_filter
Type: Emgu.TFOutput
Input to the operation.
max_filter
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.
strides
Type: SystemInt64
strides
padding
Type: SystemString
padding
out_type (Optional)
Type: SystemNullableDataType
out type
dilations (Optional)
Type: SystemInt64
dilations
padding_list (Optional)
Type: SystemInt64
padding list
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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