inception/inceptionv3/README.md
Inception v3 model architecture from "Rethinking the Inception Architecture for Computer Vision" http://arxiv.org/abs/1512.00567.
For the details, you can refer to pytorchx/inception
Following tricks are used in this inception:
setAverageCountExcludesPadding(false) in tensorrt.// 1. generate inception.wts from [pytorchx/inception](https://github.com/wang-xinyu/pytorchx/tree/master/inception)
// 2. put inception.wts into tensorrtx/inception
// 3. build and run
cd tensorrtx/inception
mkdir build
cd build
cmake ..
make
sudo ./inception -s // serialize model to plan file i.e. 'inception.engine'
sudo ./inception -d // deserialize plan file and run inference
// 4. see if the output is same as pytorchx/inception