tf.autograph.trace
| View source on GitHub |
Traces argument information at compilation time.
tf.autograph.trace(
*args
)
trace is useful when debugging, and it always executes during the tracing phase, that is, when the TF graph is constructed.
Example usage
import tensorflow as tf for i in tf.range(10): tf.autograph.trace(i) # Output: <Tensor ...>
| Args | |
|---|---|
*args | Arguments to print to sys.stdout. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.4/api_docs/python/tf/autograph/trace