(self, alpha, beta)
| 218 | return alpha, beta |
| 219 | |
| 220 | def proba_distribution(self, alpha, beta): |
| 221 | self.distribution = Beta(alpha, beta) |
| 222 | return self |
| 223 | |
| 224 | def log_prob(self, actions: th.Tensor) -> th.Tensor: |
| 225 | log_prob = self.distribution.log_prob(actions) |
no outgoing calls
no test coverage detected