Skip to content

Commit

Permalink
Fix typo in changelog (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin authored Apr 1, 2024
1 parent 5102922 commit 25b4326
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 @@ -17,9 +17,9 @@ Breaking Changes:
.. code-block:: python
# SB3 < 2.3.0 default hyperparameters, 50_000 corresponded to Atari defaults hyperparameters
# model = QRDQN("MlpPolicy", env, learning_start=50_000)
# model = QRDQN("MlpPolicy", env, learning_starts=50_000)
# SB3 >= 2.3.0:
model = QRDQN("MlpPolicy", env, learning_start=100)
model = QRDQN("MlpPolicy", env, learning_starts=100)
New Features:
Expand Down

0 comments on commit 25b4326

Please sign in to comment.