(self, actor_obs, **kwargs)
| 65 | self.distribution = Normal(mean, mean*0. + self.std) |
| 66 | |
| 67 | def act(self, actor_obs, **kwargs): |
| 68 | self.update_distribution(actor_obs) |
| 69 | return self.distribution.sample() |
| 70 | |
| 71 | def get_actions_log_prob(self, actions): |
| 72 | return self.distribution.log_prob(actions).sum(dim=-1) |
no test coverage detected