MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / on_predict_end

Method on_predict_end

tensorflow/python/keras/callbacks.py:408–416  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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)

Callers 1

_call_end_hookMethod · 0.95

Calls 1

on_predict_endMethod · 0.45

Tested by

no test coverage detected