You have already learned how to extract features generated by Inception V3, and now it is time to cover the faster architecture—MobileNet V2.
Extracting features generated by MobileNet V2
Preparing the network
Loading MobileNet V2 is in no way different from loading Inception V3. We just need to pay attention to the epoch number when loading the checkpoint. Consider the following code:
using Images, MXNet
const MODEL_NAME = "weights/mobilenet-v2/mobilenet_v2"
const MODEL_CLASS_NAMES = "weights/mobilenet-v2/synset.txt"
nnet = mx.load_checkpoint(MODEL_NAME, 0, mx.FeedForward);