Called at the end 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)
| 597 | """ |
| 598 | |
| 599 | def on_test_end(self, logs=None): |
| 600 | """Called at the end of evaluation or validation. |
| 601 | |
| 602 | Subclasses should override for any actions to run. |
| 603 | |
| 604 | Arguments: |
| 605 | logs: dict. Currently no data is passed to this argument for this method |
| 606 | but that may change in the future. |
| 607 | """ |
| 608 | |
| 609 | def on_predict_begin(self, logs=None): |
| 610 | """Called at the beginning of prediction. |