Update docstring

This commit is contained in:
Raffin, Antonin 2019-12-05 14:50:11 +01:00 committed by GitHub Enterprise
parent 464dd773e6
commit 424a554567

View file

@ -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"]