HomeSort by relevance Sort by last modified time
    Searched refs:InfOrNanError (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/python/eager/
execution_callbacks_test.py 40 with self.assertRaises(execution_callbacks.InfOrNanError):
52 with self.assertRaises(execution_callbacks.InfOrNanError):
execution_callbacks.py 42 RAISE: raise an error (e.g. `InfOrNanError`).
55 class InfOrNanError(Exception):
64 """Constructor of InfOrNanError.
86 super(InfOrNanError, self).__init__(self._get_error_message())
89 """Get the error message describing this InfOrNanError object."""
159 InfOrNanError: iff `inf` or `nan` values are seen in any of `outputs` and
193 error = InfOrNanError(op_type, op_name, index, len(outputs), value)
300 c = a / b # <-- Raises InfOrNanError.
358 tf.log(0.) # <-- Raises InfOrNanError.

Completed in 1160 milliseconds