Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Machine Learning by (19k points)

I have some confusion between mobilenet and SSD. As far as I know, mobilenet is a neural network that is used for classification and recognition whereas the SSD is a framework that is used to realize the multibox detector. Only the combination of both can do object detection. Thus, mobilenet can be interchanged with resnet, inception and so on. SSD can be interchanged with RCNN. Are my statements correct?

1 Answer

0 votes
by (33.1k points)

There are two types of deep neural networks, Base network, and detection network. MobileNet, VGG-Net, LeNet are base networks. 

The base network provides high-level features for classification or detection. If you use an entirely connected layer at the end of these networks, you have a classification. But you can remove a fully connected layer and replace it with detection networks, like SSD, Faster R-CNN, and so on. In general, SSD use of last convolutional layer on base networks for the detection task. MobileNet just like other base networks uses of convolution to produce high-level features.

For more insights on this, study the Types Of Machine Learning Courses. Also, this problem would be solved while going through the Neural Network Tutorial.

Hope this answer helps you!

Browse Categories

...