tf.autograph.trace

Traces argument information at compilation time.

Compat aliases for migration

See Migration guide for more details.

tf.compat.v1.autograph.trace

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.