Fix saving

This commit is contained in:
Antonin Raffin 2020-09-24 17:12:31 +02:00
parent 6a0ee7f321
commit ccaf9c3882

View file

@ -476,7 +476,7 @@ class TQC(OffPolicyAlgorithm):
:return: (List[str]) List of parameters that should be excluded from save
"""
# Exclude aliases
return super(TQC, self).excluded_save_params() + ["actor", "critic", "critic_target"]
return super(TQC, self)._excluded_save_params() + ["actor", "critic", "critic_target"]
def _get_torch_save_params(self) -> Tuple[List[str], List[str]]:
"""