TensorFlow

API

 tf.autograph / trace


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.

此页内容是否对您有帮助