We have previously discussed how running Inception V3 gives us outstanding results on the ImageNet dataset, but sometimes the inference is considered to be slow. Meet MobiletNet V2, a neural networks architecture developed to deliver excellent results within a short period of time.
Predicting an image class using MobileNet V2
Setting up the environment
Unfortunately, MobileNet V2 is not present in the MXNet Model Zoo. We will use two different GitHub repositories to get the symbol, params, and synset files.
Firstly, please navigate to the KeyKy Mobile Net repository (https://github.com/KeyKy/mobilenet-mxnet) and download the following two files:
- mobilenet_v2-0000.params
- mobilenet_v2-symbol.json
Next, navigate to the MobileNet...