You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any reason that DDPG doesn't have a load_path parameter like A2C that allows restoring trained weights? I'm adding it in my own copy of the code but was wondering if there's some known problem with doing that.
The text was updated successfully, but these errors were encountered:
@williamjshipman It's likely because the code was refactored after the DDPG update, except DDPG wasn't entirely updated with it. Somewhat related to #938 since it showed that there are two normalizations happening for DDPG.
banerjs
pushed a commit
to banerjs/baselines
that referenced
this issue
Jul 21, 2020
* Fix CloudpickleWrapper load-save asymmetry
CloudpickleWrapper loads using `pickle.loads`, and saves using `cloudpickle.dumps`. Using this codepath would lead to protocol error before this commit, since `pickle.loads` can't read `cloudpickle.dumps`.
* Update changelog
* Update changelog.rst
Co-authored-by: Anssi <[email protected]>
Is there any reason that DDPG doesn't have a load_path parameter like A2C that allows restoring trained weights? I'm adding it in my own copy of the code but was wondering if there's some known problem with doing that.
The text was updated successfully, but these errors were encountered: