Click or drag to resize

GraphQuantizedAvgPool Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation QuantizedAvgPool(
	Output input,
	Output min_input,
	Output max_input,
	long[] ksize,
	long[] strides,
	string padding,
	string opName = "QuantizedAvgPool"
)

Parameters

input
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.
ksize
Type: SystemInt64
ksize
strides
Type: SystemInt64
strides
padding
Type: SystemString
padding
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