MinMaxObserver#
- classtorch.ao.quantization.observer.MinMaxObserver(dtype=torch.quint8,qscheme=torch.per_tensor_affine,reduce_range=False,quant_min=None,quant_max=None,factory_kwargs=None,eps=1.1920928955078125e-07,is_dynamic=False,**kwargs)[source]#
Observer module for computing the quantization parameters based on therunning min and max values.
This observer uses the tensor min/max statistics to compute the quantizationparameters. The module records the running minimum and maximum of incomingtensors, and uses this statistic to compute the quantization parameters.
- Parameters
dtype – dtype argument to thequantize node needed to implement thereference model spec.
qscheme – Quantization scheme to be used
reduce_range – Reduces the range of the quantized data type by 1 bit
quant_min – Minimum quantization value. If unspecified, it will follow the 8-bit setup.
quant_max – Maximum quantization value. If unspecified, it will follow the 8-bit setup.
eps (Tensor) – Epsilon value for float32, Defaults totorch.finfo(torch.float32).eps.
Given running min/max as and,scale and zero point are computed as:
The running minimum/maximum is computed as:
where is the observed tensor.
The scale and zero point are then computed as:
where and are the minimum andmaximum of the quantized data type.
Warning
dtypecan only taketorch.qint8ortorch.quint8.Note
If the running minimum equals to the running maximum, the scaleand zero_point are set to 1.0 and 0.