mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-09-16 22:20:26 +00:00
added standart exclude parameters
Co-Authored-By: Raffin, Antonin <Antonin.Raffin@dlr.de>
This commit is contained in:
parent
03bf513e5e
commit
85d3743224
1 changed files with 1 additions and 1 deletions
|
|
@ -499,7 +499,7 @@ class BaseRLModel(object):
|
|||
returns the names of the parameters that should be excluded from save
|
||||
:return: (list) List of parameters that should be excluded from save
|
||||
"""
|
||||
return ["replay_buffer"]
|
||||
return ["env", "eval_env", "replay_buffer", "rollout_buffer"]
|
||||
|
||||
def save(self, path, exclude=None, include=None):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue