Calls the `on_train_end` methods of its callbacks. Arguments: logs: dict. Currently no data is passed to this argument for this method but that may change in the future.
(self, logs=None)
| 366 | callback.on_train_begin(logs) |
| 367 | |
| 368 | def on_train_end(self, logs=None): |
| 369 | """Calls the `on_train_end` methods of its callbacks. |
| 370 | |
| 371 | Arguments: |
| 372 | logs: dict. Currently no data is passed to this argument for this method |
| 373 | but that may change in the future. |
| 374 | """ |
| 375 | for callback in self.callbacks: |
| 376 | callback.on_train_end(logs) |
| 377 | |
| 378 | def on_test_begin(self, logs=None): |
| 379 | """Calls the `on_test_begin` methods of its callbacks. |
no test coverage detected