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

Method on_predict_begin

tensorflow/python/keras/callbacks.py:398–406  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

_call_begin_hookMethod · 0.95

Calls 1

on_predict_beginMethod · 0.45

Tested by

no test coverage detected