(self)
| 106 | super(EnableCallbackIf, self)._after_epoch() |
| 107 | |
| 108 | def _trigger_epoch(self): |
| 109 | if self._pred(self): |
| 110 | super(EnableCallbackIf, self)._trigger_epoch() |
| 111 | |
| 112 | def _trigger_step(self): |
| 113 | if self._pred(self): |
nothing calls this directly
no test coverage detected