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
Thank you for publishing this great repository. I noticed a small issue: it seems that the key name of the saved model and the one being loaded in dreamer.py do not match, which leads to a key error.
Thank you for publishing this great repository. I noticed a small issue: it seems that the key name of the saved model and the one being loaded in
dreamer.py
do not match, which leads to a key error.Specifically, the line:
agent.value_model.load_state_dict(model_dicts['value_model'])
should be:
agent.value_model.load_state_dict(model_dicts['value_model1'])
The text was updated successfully, but these errors were encountered: