Called at the end of training. 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)
| 577 | """ |
| 578 | |
| 579 | def on_train_end(self, logs=None): |
| 580 | """Called at the end of training. |
| 581 | |
| 582 | Subclasses should override for any actions to run. |
| 583 | |
| 584 | Arguments: |
| 585 | logs: dict. Currently no data is passed to this argument for this method |
| 586 | but that may change in the future. |
| 587 | """ |
| 588 | |
| 589 | def on_test_begin(self, logs=None): |
| 590 | """Called at the beginning of evaluation or validation. |
no outgoing calls
no test coverage detected