Fixed SAC+SDE+SDC bugs

This commit is contained in:
2022-09-03 13:08:31 +02:00
parent 4532135812
commit ee4a0eed56
4 changed files with 25 additions and 24 deletions
+5 -4
View File
@@ -167,7 +167,7 @@ class Actor(BasePolicy):
"""
msg = "get_std() is only available when using gSDE"
assert isinstance(self.action_dist,
StateDependentNoiseDistribution), msg
StateDependentNoiseDistribution) or (isinstance(self.action_dist, UniversalGaussianDistribution) and self.action_dist.use_sde), msg
return self.chol
def reset_noise(self, n_envs: int = 1) -> None:
@@ -199,12 +199,13 @@ class Actor(BasePolicy):
latent_pi = self.latent_pi(features)
mean_actions = self.mu_net(latent_pi)
if self.use_sde:
return mean_actions, self.chol, dict(latent_sde=latent_pi)
# Unstructured exploration (Original implementation)
chol = self.chol_net(latent_pi)
self.chol = chol
# Original Implementation to cap the standard deviation
self.chol = th.clamp(chol, LOG_STD_MIN, LOG_STD_MAX)
# self.chol = th.clamp(chol, LOG_STD_MIN, LOG_STD_MAX)
if self.use_sde:
return mean_actions, self.chol, dict(latent_sde=latent_pi)
return mean_actions, self.chol, {}
def forward(self, obs: th.Tensor, deterministic: bool = False) -> th.Tensor:
+3 -4
View File
@@ -262,9 +262,8 @@ class SAC(OffPolicyAlgorithm):
latent_pi = act.latent_pi(features)
mean_actions = act.mu_net(latent_pi)
# TODO: Allow contextual covariance with sde
if self.use_sde:
chol = act.chol
chol = act.chol_net(latent_pi)
else:
# Unstructured exploration (Original implementation)
chol = act.chol_net(latent_pi)
@@ -275,8 +274,8 @@ class SAC(OffPolicyAlgorithm):
act_dist = self.actor.action_dist
# internal A
if self.use_sde:
actions_pi = self.actions_from_params(
mean_actions, chol, latent_pi) # latent_pi = latent_sde
actions_pi = act_dist.actions_from_params(
mean_actions, chol, latent_sde=latent_pi) # latent_pi = latent_sde
else:
actions_pi = act_dist.actions_from_params(
mean_actions, chol)