Skip to content

Latest commit

 

History

History
 
 

mobilenetv3

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

mobilenet v3

MobileNetV3 architecture from "Searching for MobileNetV3" https://arxiv.org/abs/1905.02244?context=cs.

For the Pytorch implementation, you can refer to mobilenetv3.pytorch

Run

  1. generate mbv3_small.wts/mbv3_large.wts from pytorch implementation

  2. put mbv3_small.wts/mbv3_large.wts into tensorrtx/mobilenetv3

  3. build and run

cd tensorrtx/mobilenetv3
mkdir build
cd build
cmake ..
make
sudo ./mobilenetv3 -s small(or large) // serialize model to plan file i.e. 'mobilenetv3_small.engine'
sudo ./mobilenetv3 -d small(or large)  // deserialize plan file and run inference
  1. see if the output is same as pytorch side