LeNet
5 memberslucid.models.vision.lenetLeNet family — LeCun et al., 1998.
LeCun, Yann, et al. "Gradient-based learning applied to document recognition." Proceedings of the IEEE, vol. 86, no. 11, 1998, pp. 2278–2324.
LeNet-5 is the prototypical convolutional neural network and the direct ancestor of every modern vision architecture. Designed for handwritten-digit recognition on 32×32 grayscale inputs, it interleaves learned convolutions with fixed sub-sampling (average pooling) layers, ending in two fully-connected layers and a Gaussian-RBF output layer.
The key insight of LeCun et al. was that local receptive fields, shared weights, and spatial sub-sampling — together — give a model that is approximately invariant to small translations, scalings, and distortions of the input. Convolution enforces weight sharing: the same filter slides across the image, so a feature detector learned in one location applies everywhere. Sub-sampling layers then pool responses over a neighbourhood, yielding coarser feature maps that are robust to the exact position of each feature.
Formally, a LeNet layer computes
where is in the original paper (or ReLU in modern reimplementations) and the kernel is shared across all spatial positions . Despite its small size by today's standards (≈60 k parameters), LeNet established the convolutional template — conv → nonlinearity → pool → repeat → flatten → MLP — that is still recognisable in every CNN that followed.