(self, batch, logs=None)
| 263 | self.on_predict_end() |
| 264 | |
| 265 | def on_batch_begin(self, batch, logs=None): |
| 266 | self._call_batch_hook(ModeKeys.TRAIN, 'begin', batch, logs=logs) |
| 267 | |
| 268 | def on_batch_end(self, batch, logs=None): |
| 269 | self._call_batch_hook(ModeKeys.TRAIN, 'end', batch, logs=logs) |
nothing calls this directly
no test coverage detected