* Prints the `tf.Tensor`. See `tf.print` for details. * * @param verbose Whether to print verbose information about the tensor, * including dtype and size. * * @doc {heading: 'Tensors', subheading: 'Classes'}
(verbose = false)
| 471 | * @doc {heading: 'Tensors', subheading: 'Classes'} |
| 472 | */ |
| 473 | print(verbose = false): void { |
| 474 | return opHandler.print(this, verbose); |
| 475 | } |
| 476 | |
| 477 | /** |
| 478 | * Returns a copy of the tensor. See `tf.clone` for details. |