Skip to content

Commit 2e13a2b

Browse files
committed
push 20220529
1 parent abd3dac commit 2e13a2b

35 files changed

+1909
-2
lines changed

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/dl_number_recognition.iml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/other.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+73-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,73 @@
1-
# deeplearning-resnet-impl
2-
Residual network with 18 layers based on mnist handwritten digital image dataset.
1+
# 基于ResNet18的数字图像检测
2+
3+
## 简介
4+
5+
基于『common』包下的卷积层、池化层等基础层,实现了何凯明博士在『Deep Residual Learning for Image Recognition』论文中提到的残差单元,并拼接为『ResNet18』
6+
7+
## 快速开始
8+
9+
1. 下载数据集
10+
11+
```
12+
python mnist.py
13+
```
14+
15+
2. 训练并测试
16+
17+
```python
18+
python unit_test.py
19+
```
20+
21+
## 代码结构
22+
23+
```
24+
.
25+
├── common
26+
│   ├── functions.py
27+
│   ├── gradient.py
28+
│   ├── __init__.py
29+
│   ├── layers.py
30+
│   ├── multi_layer_net_extend.py
31+
│   ├── multi_layer_net.py
32+
│   ├── optimizer.py
33+
│   ├── __pycache__
34+
│   │   ├── functions.cpython-38.pyc
35+
│   │   ├── __init__.cpython-38.pyc
36+
│   │   ├── layers.cpython-38.pyc
37+
│   │   ├── optimizer.cpython-38.pyc
38+
│   │   ├── trainer.cpython-38.pyc
39+
│   │   └── util.cpython-38.pyc
40+
│   ├── trainer.py
41+
│   └── util.py
42+
├── mnist.pkl
43+
├── mnist.py
44+
├── __pycache__
45+
│   ├── mnist.cpython-38.pyc
46+
│   ├── Residual.cpython-38.pyc
47+
│   └── ResNet18.cpython-38.pyc
48+
├── Residual.py
49+
├── ResNet18.py
50+
├── t10k-images-idx3-ubyte.gz
51+
├── t10k-labels-idx1-ubyte.gz
52+
├── train-images-idx3-ubyte.gz
53+
├── train-labels-idx1-ubyte.gz
54+
└── unit_test.py
55+
```
56+
57+
## 说明
58+
59+
目前本代码还有很多不足,仅供学习参考。后续有能力再进行优化补全。
60+
61+
- base-resnet-block
62+
- resnet18
63+
- 普通卷积层
64+
- 平均池化层
65+
- 最大池化层
66+
- 线性变换层
67+
- 训练器
68+
69+
## 参考
70+
71+
1. [https://arxiv.org/pdf/1512.03385.pdf](https://arxiv.org/pdf/1512.03385.pdf)
72+
2. [ZhangXinNan/deep_learning_from_scratch](https://github.com/ZhangXinNan/deep_learning_from_scratch)
73+
3. 《深度学习入门——基于Python的理论与实现》作者:斋藤康毅 译者:陆宇杰

0 commit comments

Comments
 (0)