tf.Print(input_, data, message=None, first_n=None, summarize=None, name=None)
See the guide: Control Flow > Debugging Operations
Prints a list of tensors.
This is an identity op with the side effect of printing data
when evaluating.
input_
: A tensor passed through this op.data
: A list of tensors to print out when op is evaluated.message
: A string, prefix of the error message.first_n
: Only log first_n
number of times. Negative numbers log always; this is the default.summarize
: Only print this many entries of each tensor. If None, then a maximum of 3 elements are printed per input tensor.name
: A name for the operation (optional).Same tensor as input_
.
Defined in tensorflow/python/ops/logging_ops.py
.
© 2017 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/api_docs/python/tf/Print