Fix typo in changelog (#237)

This commit is contained in:
Antonin RAFFIN 2024-04-01 16:07:19 +02:00 committed by Andreas Schaarschmidt
parent 17cd797d5c
commit adfbeb1b01
1 changed files with 2 additions and 2 deletions

View File

@ -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: