Upload 3 files
Browse files- README.md +22 -0
- lenet.ckpt +3 -0
- lenetarchitecture.jpeg +0 -0
README.md
CHANGED
@@ -1,3 +1,25 @@
|
|
1 |
---
|
|
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
|
3 |
license: apache-2.0
|
4 |
+
library_name: mindspore
|
5 |
+
tags:
|
6 |
+
- image-classification
|
7 |
+
datasets:
|
8 |
+
- mnist
|
9 |
+
|
10 |
---
|
11 |
+
|
12 |
+
## MindSpore Image Classification models with MNIST on the 🤗Hub!
|
13 |
+
|
14 |
+
This repository contains the model from [this notebook on image classification with MNIST dataset using LeNet architecture](https://gitee.com/mindspore/mindspore/blob/r1.2/model_zoo/official/cv/lenet/README.md#).
|
15 |
+
|
16 |
+
## LeNet Description
|
17 |
+
Lenet-5 is one of the earliest pre-trained models proposed by Yann LeCun and others in the year 1998, in the research paper Gradient-Based Learning Applied to Document Recognition. They used this architecture for recognizing the handwritten and machine-printed characters.
|
18 |
+
|
19 |
+
The main reason behind the popularity of this model was its simple and straightforward architecture. It is a multi-layer convolution neural network for image classification.
|
20 |
+
|
21 |
+
![LeNet Architecture](./lenetarchitecture.jpeg)
|
22 |
+
|
23 |
+
[source](https://www.analyticsvidhya.com/blog/2021/03/the-architecture-of-lenet-5/)
|
24 |
+
|
25 |
+
|
lenet.ckpt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b0771234226405a68f1c9ce3ecbffb1ee371dd3cb13ae85b7a26870031c05ec8
|
3 |
+
size 494155
|
lenetarchitecture.jpeg
ADDED