(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) |
| 270 | |
| 271 | def on_epoch_begin(self, epoch, logs=None): |
| 272 | """Calls the `on_epoch_begin` methods of its callbacks. |
nothing calls this directly
no test coverage detected