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

Method on_test_end

tensorflow/python/keras/callbacks.py:388–396  ·  view source on GitHub ↗

Calls the `on_test_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

386 callback.on_test_begin(logs)
387
388 def on_test_end(self, logs=None):
389 """Calls the `on_test_end` methods of its callbacks.
390
391 Arguments:
392 logs: dict. Currently no data is passed to this argument for this method
393 but that may change in the future.
394 """
395 for callback in self.callbacks:
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.

Callers 1

_call_end_hookMethod · 0.95

Calls 1

on_test_endMethod · 0.45

Tested by

no test coverage detected