Lenet - 5 Model in Deep Learning in Introduction Part

ssuserf3a6e7 9 views 16 slides Sep 01, 2025
Slide 1
Slide 1 of 16
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16

About This Presentation

Lenet - 5 Model in Deep Learning in Introduction Part which is used for identificatin of Handwritten with entire convolutional process


Slide Content

Module 1 Introducing Deep Learning LeNet - 5

LeNet – 5 - History Gradient-Based Learning Applied to Document Recognition Y.LeCun , L Bottou , Y.Bengio an dP.Haffner Proceedings of the IEEE, 86(11):2278 – 2324, November 1998

LeNet – 5 – History of Representative CNN Models

LeNet – 5 - Architecture

LeNet – 5 – Architecture steps

CNN General Formula Training phase = learn weights from many images. Prediction phase = use those learned weights to classify new input images.

LeNet-5 Architecture two main parts Let’s break it into two phases : 1. Training Phase You give many labeled images (say handwritten digits 0–9). LeNet-5 does forward pass ( conv → tanh → pooling → fully connected → output). The output is compared with the ground truth label (like "this image is digit 5"). Error (loss) is calculated. Backpropagation adjusts the weights and biases so that next time the prediction is closer to the truth. After repeating this on thousands of images , the model learns good weights.

LeNet-5 Architecture two main parts 2. Prediction (Inference) Phase Now training is finished, weights & biases are fixed . When you give a new input image (say a handwritten "3"), the network runs forward only: input →  conv  →  tanh  → pooling → fully connected → output scores At the last layer (10 neurons), the highest score indicates the digit .

Simple Example

Simple Example

Simple Example

Simple Example

Simple Example

Simple Example

Simple Example

THANK YOU