Calls the 'on_predict_begin` 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)
| 396 | callback.on_test_end(logs) |
| 397 | |
| 398 | def on_predict_begin(self, logs=None): |
| 399 | """Calls the 'on_predict_begin` methods of its callbacks. |
| 400 | |
| 401 | Arguments: |
| 402 | logs: dict. Currently no data is passed to this argument for this method |
| 403 | but that may change in the future. |
| 404 | """ |
| 405 | for callback in self.callbacks: |
| 406 | callback.on_predict_begin(logs) |
| 407 | |
| 408 | def on_predict_end(self, logs=None): |
| 409 | """Calls the `on_predict_end` methods of its callbacks. |
no test coverage detected