Browse Source

Improve 5_nn

savefigrue
bushuhui 3 years ago
parent
commit
6d366f3727
12 changed files with 223 additions and 4183 deletions
  1. +121
    -95
      5_nn/1-Perceptron.ipynb
  2. +96
    -4081
      5_nn/2-mlp_bp.ipynb
  3. +6
    -7
      5_nn/3-softmax_ce.ipynb
  4. BIN
      5_nn/images/mlp_theory.gif
  5. BIN
      5_nn/images/neural_network_demo.gif
  6. BIN
      5_nn/images/neuron.png
  7. BIN
      5_nn/images/neuron_0.png
  8. BIN
      5_nn/images/neuron_cell_cn.png
  9. BIN
      5_nn/images/neuron_cell_cn_0.png
  10. BIN
      5_nn/images/neuron_cell_diagram.png
  11. BIN
      5_nn/images/perceptron.png
  12. BIN
      5_nn/images/perceptron_0.png

+ 121
- 95
5_nn/1-Perceptron.ipynb
File diff suppressed because it is too large
View File


+ 96
- 4081
5_nn/2-mlp_bp.ipynb
File diff suppressed because it is too large
View File


+ 6
- 7
5_nn/3-softmax_ce.ipynb View File

@@ -242,13 +242,12 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## References\n",
"## 参考资料\n",
"\n",
"* Softmax & 交叉熵\n",
" * [一文详解Softmax函数](https://zhuanlan.zhihu.com/p/105722023)\n",
" * [交叉熵代价函数(作用及公式推导)](https://blog.csdn.net/u014313009/article/details/51043064)\n",
" * [手打例子一步一步带你看懂softmax函数以及相关求导过程](https://www.jianshu.com/p/ffa51250ba2e)\n",
" * [简单易懂的softmax交叉熵损失函数求导](https://www.jianshu.com/p/c02a1fbffad6)"
"* [一文详解Softmax函数](https://zhuanlan.zhihu.com/p/105722023)\n",
"* [交叉熵代价函数(作用及公式推导)](https://blog.csdn.net/u014313009/article/details/51043064)\n",
"* [手打例子一步一步带你看懂softmax函数以及相关求导过程](https://www.jianshu.com/p/ffa51250ba2e)\n",
"* [简单易懂的softmax交叉熵损失函数求导](https://www.jianshu.com/p/c02a1fbffad6)"
]
}
],
@@ -268,7 +267,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.5"
"version": "3.7.9"
}
},
"nbformat": 4,


BIN
5_nn/images/mlp_theory.gif View File

Before After
Width: 720  |  Height: 501  |  Size: 627 kB

BIN
5_nn/images/neural_network_demo.gif View File

Before After
Width: 800  |  Height: 450  |  Size: 4.4 MB

BIN
5_nn/images/neuron.png View File

Before After
Width: 626  |  Height: 489  |  Size: 54 kB Width: 500  |  Height: 391  |  Size: 50 kB

BIN
5_nn/images/neuron_0.png View File

Before After
Width: 626  |  Height: 489  |  Size: 54 kB

BIN
5_nn/images/neuron_cell_cn.png View File

Before After
Width: 500  |  Height: 340  |  Size: 167 kB

BIN
5_nn/images/neuron_cell_cn_0.png View File

Before After
Width: 677  |  Height: 461  |  Size: 278 kB

BIN
5_nn/images/neuron_cell_diagram.png View File

Before After
Width: 1280  |  Height: 931  |  Size: 589 kB

BIN
5_nn/images/perceptron.png View File

Before After
Width: 500  |  Height: 264  |  Size: 34 kB

BIN
5_nn/images/perceptron_0.png View File

Before After
Width: 1435  |  Height: 759  |  Size: 84 kB

Loading…
Cancel
Save