Skip to content

Commit a18b91e

Browse files
araffinsolismortis
andauthored
Replace "nature" with "Nature" (magazine) to reduce confusion (#965)
* Replace "nature" with "Nature" (magazine) to reduce confusion * Replace "nature" with "Nature" (magazine) to reduce confusion * Update changelog Co-authored-by: mel <[email protected]>
1 parent 38706f1 commit a18b91e

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

docs/guide/migration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ DQN
141141
^^^
142142

143143
Only the vanilla DQN is implemented right now but extensions will follow.
144-
Default hyperparameters are taken from the nature paper, except for the optimizer and learning rate that were taken from Stable Baselines defaults.
144+
Default hyperparameters are taken from the Nature paper, except for the optimizer and learning rate that were taken from Stable Baselines defaults.
145145

146146
DDPG
147147
^^^^

docs/misc/changelog.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
Changelog
44
==========
55

6+
Release 1.6.1a0 (WIP)
7+
---------------------------
8+
9+
Breaking Changes:
10+
^^^^^^^^^^^^^^^^^
11+
12+
New Features:
13+
^^^^^^^^^^^^^
14+
15+
SB3-Contrib
16+
^^^^^^^^^^^
17+
18+
Bug Fixes:
19+
^^^^^^^^^^
20+
21+
Deprecations:
22+
^^^^^^^^^^^^^
23+
24+
Others:
25+
^^^^^^^
26+
27+
Documentation:
28+
^^^^^^^^^^^^^^
29+
- Fix typo in docstring "nature" -> "Nature" (@Melanol)
30+
631

732
Release 1.6.0 (2022-07-11)
833
---------------------------
@@ -986,3 +1011,4 @@ And all the contributors:
9861011
@eleurent @ac-93 @cove9988 @theDebugger811 @hsuehch @Demetrio92 @thomasgubler @IperGiove @ScheiklP
9871012
@simoninithomas @armandpl @manuel-delverme @Gautam-J @gianlucadecola @buoyancy99 @caburu @xy9485
9881013
@Gregwar @ycheng517 @quantitative-technologies @bcollazo @git-thor @TibiGG @cool-RR @MWeltevrede
1014+
@Melanol

stable_baselines3/common/torch_layers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def forward(self, observations: th.Tensor) -> th.Tensor:
5050

5151
class NatureCNN(BaseFeaturesExtractor):
5252
"""
53-
CNN from DQN nature paper:
53+
CNN from DQN Nature paper:
5454
Mnih, Volodymyr, et al.
5555
"Human-level control through deep reinforcement learning."
5656
Nature 518.7540 (2015): 529-533.

stable_baselines3/dqn/dqn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class DQN(OffPolicyAlgorithm):
2020
Deep Q-Network (DQN)
2121
2222
Paper: https://arxiv.org/abs/1312.5602, https://www.nature.com/articles/nature14236
23-
Default hyperparameters are taken from the nature paper,
23+
Default hyperparameters are taken from the Nature paper,
2424
except for the optimizer and learning rate that were taken from Stable Baselines defaults.
2525
2626
:param policy: The policy model to use (MlpPolicy, CnnPolicy, ...)

stable_baselines3/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.0
1+
1.6.1a0

0 commit comments

Comments
 (0)