tf.errors.CancelledError | TensorFlow v1.15.0 (original) (raw)
tf.errors.CancelledError
Stay organized with collections Save and categorize content based on your preferences.
Raised when an operation or step is cancelled.
Inherits From: OpError
View aliases
Compat aliases for migration
SeeMigration guide for more details.
tf.compat.v1.errors.CancelledError, `tf.compat.v2.errors.CancelledError`
tf.errors.CancelledError(
node_def, op, message
)
For example, a long-running operation (e.g.tf.QueueBase.enqueue may be cancelled by running another operation (e.g.tf.QueueBase.close, or by tf.Session.close. A step that is running such a long-running operation will fail by raisingCancelledError
.
Attributes | |
---|---|
error_code | The integer error code that describes the error. |
message | The error message that describes the error. |
node_def | The NodeDef proto representing the op that failed. |
op | The operation that failed, if known. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.