* Returns a copy of the tensor. See `tf.clone` for details. * @doc {heading: 'Tensors', subheading: 'Classes'}
(this: T)
| 479 | * @doc {heading: 'Tensors', subheading: 'Classes'} |
| 480 | */ |
| 481 | clone<T extends Tensor>(this: T): T { |
| 482 | this.throwIfDisposed(); |
| 483 | return opHandler.clone(this); |
| 484 | } |
| 485 | |
| 486 | /** |
| 487 | * Returns a human-readable description of the tensor. Useful for logging. |
nothing calls this directly
no test coverage detected