tf.raw_ops.QuantizedAvgPool

Produces the average pool of the input tensor for quantized types.

inputA Tensor. Must be one of the following types: qint8, quint8, qint32, qint16, quint16. 4-D with shape [batch, height, width, channels].
min_inputA Tensor of type float32. The float value that the lowest quantized input value represents.
max_inputA Tensor of type float32. The float value that the highest quantized input value represents.
ksizeA list of ints. The size of the window for each dimension of the input tensor. The length must be 4 to match the number of dimensions of the input.
stridesA list of ints. The stride of the sliding window for each dimension of the input tensor. The length must be 4 to match the number of dimensions of the input.
paddingA string from: "SAME", "VALID". The type of padding algorithm to use.
nameA name for the operation (optional).

A tuple of Tensor objects (output, min_output, max_output).
outputA Tensor. Has the same type as input.
min_outputA Tensor of type float32.
max_outputA Tensor of type float32.