(self)
| 390 | self._init_memory() |
| 391 | |
| 392 | def _trigger(self): |
| 393 | mean, max = self.runner.reset_stats() |
| 394 | if mean is not None: |
| 395 | self.trainer.monitors.put_scalar('expreplay/mean_score', mean) |
| 396 | self.trainer.monitors.put_scalar('expreplay/max_score', max) |
nothing calls this directly
no test coverage detected