Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 60ecdef

Browse files
author
xyliao
committed
finish autoencoder
1 parent 16d51e6 commit 60ecdef

File tree

13 files changed

+483
-192
lines changed

13 files changed

+483
-192
lines changed

‎.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ __pycache__
44
img
55
chapter3_MLP/3_Neural_Network/.desktop
66
.vscode
7-
data
7+
data
8+
mnist

‎README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Learn Deep Learning with PyTorch
1717
## 课程目录
1818
### part1: 深度学习基础
1919
- Chapter 2: PyTorch基础
20-
- [Tensor和Variable](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter2_PyTorch-Basics/Tensor-and-Variable.ipynb)
20+
- [Tensor和Variable](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter2_PyTorch-Basics/Tensor-and-Variable.ipynb)
2121
- [自动求导机制](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter2_PyTorch-Basics/autograd.ipynb)
2222
- [动态图与静态图](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter2_PyTorch-Basics/dynamic-graph.ipynb)
2323

@@ -28,7 +28,6 @@ Learn Deep Learning with PyTorch
2828
- [多层神经网络,Sequential 和 Module](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter3_NN/nn-sequential-module.ipynb)
2929
- [深度神经网络](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter3_NN/deep-nn.ipynb)
3030
- [参数初始化方法](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter3_NN/param_initialize.ipynb)
31-
3231
- 优化算法
3332
- [SGD](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter3_NN/optimizer/sgd.ipynb)
3433
- [动量法](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter3_NN/optimizer/momentum.ipynb)
@@ -59,7 +58,7 @@ Learn Deep Learning with PyTorch
5958
- [Seq-LSTM 做词性预测](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter5_RNN/nlp/seq-lstm.ipynb)
6059

6160
- Chapter 6: 生成对抗网络
62-
- 自动编码器
61+
- [自动编码器](https://github.com/SherlockLiao/code-of-learn-deep-learning-with-pytorch/blob/master/chapter6_GAN/autoencoder/autoencoder.ipynb)
6362
- 变分自动编码器
6463
- 生成对抗网络的介绍
6564
- 深度卷积对抗网络(DCGANs)

‎chapter3_NN/optimizer/adam.ipynb

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,7 @@
9797
{
9898
"cell_type": "code",
9999
"execution_count": 3,
100-
"metadata": {
101-
"collapsed": false
102-
},
100+
"metadata": {},
103101
"outputs": [
104102
{
105103
"name": "stdout",
@@ -162,9 +160,7 @@
162160
{
163161
"cell_type": "code",
164162
"execution_count": 4,
165-
"metadata": {
166-
"collapsed": false
167-
},
163+
"metadata": {},
168164
"outputs": [
169165
{
170166
"data": {
@@ -205,9 +201,7 @@
205201
{
206202
"cell_type": "code",
207203
"execution_count": 5,
208-
"metadata": {
209-
"collapsed": false
210-
},
204+
"metadata": {},
211205
"outputs": [
212206
{
213207
"name": "stdout",
@@ -277,9 +271,9 @@
277271
],
278272
"metadata": {
279273
"kernelspec": {
280-
"display_name": "mx",
274+
"display_name": "Python 3",
281275
"language": "python",
282-
"name": "mx"
276+
"name": "python3"
283277
},
284278
"language_info": {
285279
"codemirror_mode": {
@@ -291,7 +285,7 @@
291285
"name": "python",
292286
"nbconvert_exporter": "python",
293287
"pygments_lexer": "ipython3",
294-
"version": "3.6.0"
288+
"version": "3.6.3"
295289
}
296290
},
297291
"nbformat": 4,

‎chapter6_GAN/autoencoder/autoencoder.ipynb

Lines changed: 473 additions & 0 deletions
Large diffs are not rendered by default.

‎chapter6_GAN/autoencoder/conv_autoencoder.py

Lines changed: 0 additions & 86 deletions
This file was deleted.
70.5 KB
Loading[フレーム]
69.1 KB
Loading[フレーム]

‎chapter6_GAN/autoencoder/simple_autoencoder.py

Lines changed: 0 additions & 90 deletions
This file was deleted.
61.3 KB
Loading[フレーム]
59.9 KB
Loading[フレーム]

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /