(self, actions: th.Tensor)
| 71 | return self |
| 72 | |
| 73 | def log_prob(self, actions: th.Tensor) -> th.Tensor: |
| 74 | log_prob = self.distribution.log_prob(actions) |
| 75 | return sum_independent_dims(log_prob) |
| 76 | |
| 77 | def entropy_loss(self) -> th.Tensor: |
| 78 | entropy_loss = -1.0 * self.distribution.entropy() |
nothing calls this directly
no test coverage detected