mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-09-16 22:20:26 +00:00
Update docstring
This commit is contained in:
parent
464dd773e6
commit
424a554567
1 changed files with 3 additions and 1 deletions
|
|
@ -547,7 +547,9 @@ class BaseRLModel(object):
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def excluded_save_params():
|
def excluded_save_params():
|
||||||
"""
|
"""
|
||||||
returns the names of the parameters that should be excluded from save
|
Returns the names of the parameters that should be excluded by default
|
||||||
|
when saving the model.
|
||||||
|
|
||||||
:return: ([str]) List of parameters that should be excluded from save
|
:return: ([str]) List of parameters that should be excluded from save
|
||||||
"""
|
"""
|
||||||
return ["env", "eval_env", "replay_buffer", "rollout_buffer"]
|
return ["env", "eval_env", "replay_buffer", "rollout_buffer"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue