You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to @twu-mrc, self.distribution in rsl_rl 1.0.2 version is L121 and 2.0.2 version is L101, in update_distribution() function. The self.distribution below the comment 'Action noise' is None.
https://github.com/leggedrobotics/rsl_rl/blob/master/rsl_rl/modules/actor_critic.py#L121
The action noise had better use positive parameterization, e.g.
self.distribution = Normal(mean, torch.ones_like(mean) + nn.functional.elu(self.std - 1))
The text was updated successfully, but these errors were encountered: