Calls the `on_predict_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)
| 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. |
| 410 | |
| 411 | Arguments: |
| 412 | logs: dict. Currently no data is passed to this argument for this method |
| 413 | but that may change in the future. |
| 414 | """ |
| 415 | for callback in self.callbacks: |
| 416 | callback.on_predict_end(logs) |
| 417 | |
| 418 | def __iter__(self): |
| 419 | return iter(self.callbacks) |
no test coverage detected