(self, encoded_state)
| 535 | ) |
| 536 | |
| 537 | def prediction(self, encoded_state): |
| 538 | policy, value = self.prediction_network(encoded_state) |
| 539 | return policy, value |
| 540 | |
| 541 | def representation(self, observation): |
| 542 | encoded_state = self.representation_network(observation) |
nothing calls this directly
no outgoing calls
no test coverage detected