Called at the end of prediction. 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)
| 617 | """ |
| 618 | |
| 619 | def on_predict_end(self, logs=None): |
| 620 | """Called at the end of prediction. |
| 621 | |
| 622 | Subclasses should override for any actions to run. |
| 623 | |
| 624 | Arguments: |
| 625 | logs: dict. Currently no data is passed to this argument for this method |
| 626 | but that may change in the future. |
| 627 | """ |
| 628 | |
| 629 | |
| 630 | @keras_export('keras.callbacks.BaseLogger') |