Tensorflow.js is an open-source library for creating machine learning models in Javascript that allows users to run the models directly in the browser.
The tf.clone() is a function defined in the class tf.Tensor. It’s used to create a replica of a tensor.
Syntax :
tf.clone( values )
Parameters:
- values: It can be a tensor of values or an array of values
Return value: It returns the tensor containing elements the same as of values.
Example 1: Input parameter values as a tensor
Javascript
const tf = require( '@tensorflow/tfjs' );
var values = tf.tensor([1, 2, 3, 4, 5, 6, 7]);
tf.clone(values).print()
|
Output :
Tensor
[1, 2, 3, 4, 5, 6, 7]
Example 2: Input parameter values as an array of values
Javascript
const tf = require( '@tensorflow/tfjs' );
var values = [1, 2, 3, 4, 5, 6, 7];
tf.clone(values).print()
|
Output :
Tensor
[1, 2, 3, 4, 5, 6, 7]
Reference:https://js.tensorflow.org/api/latest/#tf.Tensor.clone