Skip to content

Commit fce0e87

Browse files
committed
title changes
1 parent 5cef559 commit fce0e87

11 files changed

+23
-29
lines changed

Diff for: ch17/ch17_optional_DCGAN.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"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)"
1919
]
2020
},
2121
{
@@ -1002,7 +1002,7 @@
10021002
"name": "python",
10031003
"nbconvert_exporter": "python",
10041004
"pygments_lexer": "ipython3",
1005-
"version": "3.7.4"
1005+
"version": "3.7.1"
10061006
}
10071007
},
10081008
"nbformat": 4,

Diff for: ch17/ch17_optional_DCGAN.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616
# Code License: [MIT License](https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
1717

18-
# # Chapter 17: Generative Adversarial Networks (Optional, DCGAN)
18+
# # Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Optional, DCGAN)
1919

2020
# 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).
2121

Diff for: ch17/ch17_part1.ipynb

+3-9
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"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)"
1919
]
2020
},
2121
{
@@ -825,13 +825,7 @@
825825
"Epoch 088 | ET 49.63 min | Avg Losses >> G/D 0.9061/1.3163 [D-Real: 0.6606 D-Fake: 0.6557]\n",
826826
"Epoch 089 | ET 50.19 min | Avg Losses >> G/D 0.9138/1.3179 [D-Real: 0.6608 D-Fake: 0.6571]\n",
827827
"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",
835829
"Epoch 092 | ET 51.89 min | Avg Losses >> G/D 0.9016/1.3206 [D-Real: 0.6622 D-Fake: 0.6584]\n",
836830
"Epoch 093 | ET 52.46 min | Avg Losses >> G/D 0.9014/1.3204 [D-Real: 0.6644 D-Fake: 0.6560]\n",
837831
"Epoch 094 | ET 53.01 min | Avg Losses >> G/D 0.9268/1.3179 [D-Real: 0.6574 D-Fake: 0.6605]\n",
@@ -1180,7 +1174,7 @@
11801174
"name": "python",
11811175
"nbconvert_exporter": "python",
11821176
"pygments_lexer": "ipython3",
1183-
"version": "3.7.4"
1177+
"version": "3.7.1"
11841178
}
11851179
},
11861180
"nbformat": 4,

Diff for: ch17/ch17_part1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616
# Code License: [MIT License](https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
1717

18-
# # Chapter 17: Generative Adversarial Networks (Part 1/2)
18+
# # Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Part 1/2)
1919

2020
# 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).
2121

Diff for: ch17/ch17_part2.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"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)"
1919
]
2020
},
2121
{
@@ -1142,7 +1142,7 @@
11421142
"name": "python",
11431143
"nbconvert_exporter": "python",
11441144
"pygments_lexer": "ipython3",
1145-
"version": "3.7.4"
1145+
"version": "3.7.1"
11461146
}
11471147
},
11481148
"nbformat": 4,

Diff for: ch17/ch17_part2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616
# Code License: [MIT License](https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
1717

18-
# # Chapter 17: Generative Adversarial Networks (Part 2/2)
18+
# # Chapter 17 - Generative Adversarial Networks for Synthesizing New Data (Part 2/2)
1919

2020
# 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).
2121

Diff for: ch18/cartpole/main.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
1010

11-
############################################################################
12-
# Chapter 18: Reinforcement Learning
13-
############################################################################
11+
#################################################################################
12+
# Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13+
#################################################################################
1414

1515
# Script: carpole/main.py
1616

Diff for: ch18/ch18.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"# Chapter 18: Using Reinforcement Learning for Decision Making in Complex Environments"
18+
"# Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments"
1919
]
2020
},
2121
{

Diff for: ch18/gridworld/agent.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
1010

11-
############################################################################
12-
# Chapter 18: Reinforcement Learning
13-
############################################################################
11+
#################################################################################
12+
# Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13+
#################################################################################
1414

1515
# Script: agent.py
1616

Diff for: ch18/gridworld/gridworld_env.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
1010

11-
############################################################################
12-
# Chapter 18: Reinforcement Learning
13-
############################################################################
11+
#################################################################################
12+
# Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13+
#################################################################################
1414

1515
# Script: gridworld_env.py
1616

Diff for: ch18/gridworld/qlearning.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# Code License: MIT License (https://github.com/rasbt/python-machine-learning-book-3rd-edition/blob/master/LICENSE.txt)
1010

11-
############################################################################
12-
# Chapter 18: Reinforcement Learning
13-
############################################################################
11+
#################################################################################
12+
# Chapter 18 - Reinforcement Learning for Decision Making in Complex Environments
13+
#################################################################################
1414

1515
# Script: qlearning.py
1616

0 commit comments

Comments
 (0)