Called at the beginning of evaluation or validation. Subclasses should override for any actions to run. Arguments: logs: dict. Currently no data is passed to this argument for this method but that may change in the future.
(self, logs=None)
| 587 | """ |
| 588 | |
| 589 | def on_test_begin(self, logs=None): |
| 590 | """Called at the beginning of evaluation or validation. |
| 591 | |
| 592 | Subclasses should override for any actions to run. |
| 593 | |
| 594 | Arguments: |
| 595 | logs: dict. Currently no data is passed to this argument for this method |
| 596 | but that may change in the future. |
| 597 | """ |
| 598 | |
| 599 | def on_test_end(self, logs=None): |
| 600 | """Called at the end of evaluation or validation. |