Learn Before
Classic Convolutional Neural Network Architectures for Object Detection in Images
LeNet-5 Convolutional Neural Network
- LeNet-5 is trained on 32 x 32 Gray-scale images.
- The first layer has six, 5 x 5 filters with a stride of one. The output is passed to a 2 x 2 average pooling with a stride of two.
- The second layer has 16, 5 x 5 filters that pass the results to a 2 x 2 average pooling with a stride of two.
- Two fully connected layers get the output and pass it to a softmax output layer to detect one of ten classes.

0
1
4 years ago
Contributors are:
Who are from:
Tags
Data Science
Related
LeNet-5 Convolutional Neural Network
AlexNet Convolutional Neural Network
VGG - 16 Convolutional Neural Network
Learn After
LeNet-5 Convolutional Neural Network Applications