[docs]classDequantizer(Layer):"""Layer capable of dequantizing an input tensor. This resolve the scales of an input tensor, following the equantion:: output = input x scales Args: name (str, optional): name of the layer. Defaults to empty string. """def__init__(self,name=""):try:params=LayerParams(LayerType.Dequantizer,{})Layer.__init__(self,params,name)exceptBaseException:self=Noneraise