File tree 11 files changed +23
-29
lines changed
11 files changed +23
-29
lines changed Original file line number Diff line number Diff line change 15
15
"cell_type": "markdown",
16
16
"metadata": {},
17
17
"source": [
18
- "# Chapter 17: Synthesizing New Data with Generative Adversarial Networks (Optional, DCGAN)"
18
+ "# Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Optional, DCGAN)"
19
19
]
20
20
},
21
21
{
1002
1002
"name": "python",
1003
1003
"nbconvert_exporter": "python",
1004
1004
"pygments_lexer": "ipython3",
1005
- "version": "3.7.4 "
1005
+ "version": "3.7.1 "
1006
1006
}
1007
1007
},
1008
1008
"nbformat": 4,
Original file line number Diff line number Diff line change 15
15
#
16
16
# Code License: [MIT License](https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
17
17
18
- # # Chapter 17: Generative Adversarial Networks (Optional, DCGAN)
18
+ # # Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Optional, DCGAN)
19
19
20
20
# Note that the optional watermark extension is a small IPython notebook plugin that I developed to make the code reproducible. You can just skip the following line(s).
21
21
Original file line number Diff line number Diff line change 15
15
"cell_type": "markdown",
16
16
"metadata": {},
17
17
"source": [
18
- "# Chapter 17: Synthesizing New Data with Generative Adversarial Networks (Part 1/2)"
18
+ "# Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Part 1/2)"
19
19
]
20
20
},
21
21
{
825
825
"Epoch 088 | ET 49.63 min | Avg Losses >> G/D 0.9061/1.3163 [D-Real: 0.6606 D-Fake: 0.6557]\n",
826
826
"Epoch 089 | ET 50.19 min | Avg Losses >> G/D 0.9138/1.3179 [D-Real: 0.6608 D-Fake: 0.6571]\n",
827
827
"Epoch 090 | ET 50.75 min | Avg Losses >> G/D 0.9168/1.3117 [D-Real: 0.6577 D-Fake: 0.6540]\n",
828
- "Epoch 091 | ET 51.32 min | Avg Losses >> G/D 0.9136/1.3244 [D-Real: 0.6627 D-Fake: 0.6617]\n"
829
- ]
830
- },
831
- {
832
- "name": "stdout",
833
- "output_type": "stream",
834
- "text": [
828
+ "Epoch 091 | ET 51.32 min | Avg Losses >> G/D 0.9136/1.3244 [D-Real: 0.6627 D-Fake: 0.6617]\n",
835
829
"Epoch 092 | ET 51.89 min | Avg Losses >> G/D 0.9016/1.3206 [D-Real: 0.6622 D-Fake: 0.6584]\n",
836
830
"Epoch 093 | ET 52.46 min | Avg Losses >> G/D 0.9014/1.3204 [D-Real: 0.6644 D-Fake: 0.6560]\n",
837
831
"Epoch 094 | ET 53.01 min | Avg Losses >> G/D 0.9268/1.3179 [D-Real: 0.6574 D-Fake: 0.6605]\n",
1180
1174
"name": "python",
1181
1175
"nbconvert_exporter": "python",
1182
1176
"pygments_lexer": "ipython3",
1183
- "version": "3.7.4 "
1177
+ "version": "3.7.1 "
1184
1178
}
1185
1179
},
1186
1180
"nbformat": 4,
Original file line number Diff line number Diff line change 15
15
#
16
16
# Code License: [MIT License](https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
17
17
18
- # # Chapter 17: Generative Adversarial Networks (Part 1/2)
18
+ # # Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Part 1/2)
19
19
20
20
# Note that the optional watermark extension is a small IPython notebook plugin that I developed to make the code reproducible. You can just skip the following line(s).
21
21
Original file line number Diff line number Diff line change 15
15
"cell_type": "markdown",
16
16
"metadata": {},
17
17
"source": [
18
- "# Chapter 17: Synthesizing New Data with Generative Adversarial Networks (Part 2/2)"
18
+ "# Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Part 2/2)"
19
19
]
20
20
},
21
21
{
1142
1142
"name": "python",
1143
1143
"nbconvert_exporter": "python",
1144
1144
"pygments_lexer": "ipython3",
1145
- "version": "3.7.4 "
1145
+ "version": "3.7.1 "
1146
1146
}
1147
1147
},
1148
1148
"nbformat": 4,
Original file line number Diff line number Diff line change 15
15
#
16
16
# Code License: [MIT License](https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
17
17
18
- # # Chapter 17: Generative Adversarial Networks (Part 2/2)
18
+ # # Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Part 2/2)
19
19
20
20
# Note that the optional watermark extension is a small IPython notebook plugin that I developed to make the code reproducible. You can just skip the following line(s).
21
21
Original file line number Diff line number Diff line change 8
8
#
9
9
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
10
10
11
- ############################################################################
12
- # Chapter 18: Reinforcement Learning
13
- ############################################################################
11
+ #################################################################################
12
+ # Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13
+ #################################################################################
14
14
15
15
# Script: carpole/main.py
16
16
Original file line number Diff line number Diff line change 15
15
"cell_type": "markdown",
16
16
"metadata": {},
17
17
"source": [
18
- "# Chapter 18: Using Reinforcement Learning for Decision Making in Complex Environments"
18
+ "# Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments"
19
19
]
20
20
},
21
21
{
Original file line number Diff line number Diff line change 8
8
#
9
9
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
10
10
11
- ############################################################################
12
- # Chapter 18: Reinforcement Learning
13
- ############################################################################
11
+ #################################################################################
12
+ # Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13
+ #################################################################################
14
14
15
15
# Script: agent.py
16
16
Original file line number Diff line number Diff line change 8
8
#
9
9
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
10
10
11
- ############################################################################
12
- # Chapter 18: Reinforcement Learning
13
- ############################################################################
11
+ #################################################################################
12
+ # Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13
+ #################################################################################
14
14
15
15
# Script: gridworld_env.py
16
16
Original file line number Diff line number Diff line change 8
8
#
9
9
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
10
10
11
- ############################################################################
12
- # Chapter 18: Reinforcement Learning
13
- ############################################################################
11
+ #################################################################################
12
+ # Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13
+ #################################################################################
14
14
15
15
# Script: qlearning.py
16
16
You can’t perform that action at this time.
0 commit comments