Inference code for mobilenet v2

Hi,

Can anyone could share inference code for mobilenet v2!!!

@Nvidia team can you reply to the above question…

Hi,

Based on the different frameworks (ex. TensorFlow, pyTorch, …), you can find some sample in our TensorRT package.
For example, here is one for TensorFlow based model:
/usr/src/tensorrt/samples/python/uff_ssd

Our official sample use the InceptionV2 as feature extractor.
You should able to follow the similar procedures for MobilenetV2.

Thanks.

Hi,

Thank you for the reply . Can you please share some sample inference code for running classfication inference (Eg: mobilenet v2). Please dont tell share me detection inference code like ssd.

Hi,

Could you share which framework do you use?

You can find some caffe-based classification code here:
https://github.com/dusty-nv/jetson-inference/blob/master/docs/imagenet-console.md
If you are using TensorFlow, you can check this sample for information:
/usr/src/tensorrt/samples/sampleUffMNIST/

Thanks.