tf.compat.v1.nn.quantized_conv2d

Computes a 2D convolution given quantized 4D input and filter tensors.

tf.compat.v1.nn.quantized_conv2d(
    input, filter, min_input, max_input, min_filter, max_filter, strides, padding,
    out_type=tf.dtypes.qint32, dilations=[1, 1, 1, 1], name=None
)

The inputs are quantized tensors where the lowest value represents the real number of the associated minimum, and the highest represents the maximum. This means that you can only interpret the quantized output in the same way, by taking the returned minimum and maximum values into account.

Args:

Returns:

A tuple of Tensor objects (output, min_output, max_output).