tf.autograph.trace

TensorFlow 1 version View source on GitHub

Traces argument information at compilation time.

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 Arguments to print to sys.stdout.