Prints information about the tf.Tensor including its data.
tf.Tensor
const verbose = true;tf.tensor2d([1, 2, 3, 4], [2, 2]).print(verbose); Copy
const verbose = true;tf.tensor2d([1, 2, 3, 4], [2, 2]).print(verbose);
The tensor to be printed.
Optional
Whether to print verbose information about the Tensor, including dtype and size.
Tensor
Generated using TypeDoc
Prints information about the
tf.Tensor
including its data.