Best architecture for object recognition

344 Views Asked by At

I'm evaluating the options of using HTM (hierarchical temporal memory) and CNN (convolutional neural network) for object recognition. Which architecture (model) would is most appropriate in this case?

2

There are 2 best solutions below

0
On

Always prefer using pretrained models and using transfer learning first in these cases. You can check out the implementation of Inception V3 etc. for object detection on tensorflow website and use them for transfer learning for your project.

1
On

Convolutional Neural Network and its variants are best tool for object recognition . You can try with AlexNet,VGGNEt, ResNet, Batch Normalization , Dropout etc.