mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-07-29 20:14:17 +00:00
Fixes update_locals() in collect_rollouts() of OnPolicyAlgorithm (#1660)
* calls update_locals() before on_rollout_end() * update changelog
This commit is contained in:
parent
c99d65c664
commit
84163b468c
2 changed files with 3 additions and 0 deletions
|
|
@ -22,6 +22,7 @@ Bug Fixes:
|
|||
^^^^^^^^^^
|
||||
- Moves VectorizedActionNoise into ``_setup_learn()`` in OffPolicyAlgorithm (@PatrickHelm)
|
||||
- Prevents out of bound error on Windows if no seed is passed (@PatrickHelm)
|
||||
- Calls ``callback.update_locals()`` before ``callback.on_rollout_end()`` in OnPolicyAlgorithm (@PatrickHelm)
|
||||
|
||||
Deprecations:
|
||||
^^^^^^^^^^^^^
|
||||
|
|
|
|||
|
|
@ -221,6 +221,8 @@ class OnPolicyAlgorithm(BaseAlgorithm):
|
|||
|
||||
rollout_buffer.compute_returns_and_advantage(last_values=values, dones=dones)
|
||||
|
||||
callback.update_locals(locals())
|
||||
|
||||
callback.on_rollout_end()
|
||||
|
||||
return True
|
||||
|
|
|
|||
Loading…
Reference in a new issue