Calls the `on_test_batch_begin` methods of its callbacks. Arguments: batch: integer, index of batch within the current epoch. logs: dict. Has keys `batch` and `size` representing the current batch number and the size of the batch.
(self, batch, logs=None)
| 318 | self._call_batch_hook(ModeKeys.TRAIN, 'end', batch, logs=logs) |
| 319 | |
| 320 | def on_test_batch_begin(self, batch, logs=None): |
| 321 | """Calls the `on_test_batch_begin` methods of its callbacks. |
| 322 | |
| 323 | Arguments: |
| 324 | batch: integer, index of batch within the current epoch. |
| 325 | logs: dict. Has keys `batch` and `size` representing the current batch |
| 326 | number and the size of the batch. |
| 327 | """ |
| 328 | self._call_batch_hook(ModeKeys.TEST, 'begin', batch, logs=logs) |
| 329 | |
| 330 | def on_test_batch_end(self, batch, logs=None): |
| 331 | """Calls the `on_test_batch_end` methods of its callbacks. |