While Compiling a model in Concrete ML we can set the bits , but Can we through some API also see the range of the quantization used , the zero point and scale parameter used?
Hi,
Concrete ML does not expose a high-level API to retrieve the quantization ranges. However, you can easily inspect the effect of quantization by running a simple loop on your model, we have similar examples in our tutorials.
Regarding the zero-point and scale parameters, you can retrieve them from the quantization layers as well.
Thanks