Skip to content

Commit

Permalink
Fix typo in changelog (#1882)
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin authored Apr 1, 2024
1 parent 429be93 commit 40ba504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/misc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Breaking Changes:
.. code-block:: python
# SB3 < 2.3.0 default hyperparameters, 50_000 corresponded to Atari defaults hyperparameters
# model = DQN("MlpPolicy", env, learning_start=50_000)
# model = DQN("MlpPolicy", env, learning_starts=50_000)
# SB3 >= 2.3.0:
model = DQN("MlpPolicy", env, learning_start=100)
model = DQN("MlpPolicy", env, learning_starts=100)
- For safety, ``torch.load()`` is now called with ``weights_only=True`` when loading torch tensors,
policy ``load()`` still uses ``weights_only=False`` as gymnasium imports are required for it to work
Expand Down

0 comments on commit 40ba504

Please sign in to comment.