Quantization sample of python

After I installed TensorRT 6, I didn’t find the sample for quantification on my computer.Can anyone give me one link to download the sample for quantification,which used python.

Hi,

Python samples are shipped with TensorRT.
You can find the Python samples in the “/usr/src/tensorrt/samples/python” package directory.

You can try below command to list all the tensorrt directories:
sudo find / -name tensorrt 2> /dev/null

Recommend trying NVIDIA GPU Cloud (NGC) tensorrt optimized containers, which removes many of the host-side dependencies.
https://ngc.nvidia.com/signin

Thanks

Hi,

Please refer to below links for mixed precision python sample:
https://docs.nvidia.com/deeplearning/sdk/tensorrt-archived/tensorrt-601/tensorrt-developer-guide/index.html#unique_299310851
https://docs.nvidia.com/deeplearning/sdk/tensorrt-sample-support-guide/index.html#int8_caffe_mnist

Thanks