Tensorflow.js tf.unstack() Function Last Updated : 12 May, 2021 Comments Improve Suggest changes Like Article Like Report Tensorflow.js is an open-source library developed by Google for running machine learning models and deep learning neural networks in the browser or node environment. It also helps the developers to develop ML models in JavaScript language and can use ML directly in the browser or in Node.js. The tf.unstack() function is used to unstack a tf,tensors into an r-1 rank tf.tensor. Syntax: tf.stack(x, axis) Parameters: x: a tensor object.axis: It is an axis of the unstack along. Return Value: It returns tf.Tensor[] Example 1: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Creating a tensor2d const a = tf.tensor2d([1, 2, 3, 4], [2, 2]); // Printing the tensor tf.unstack(a).forEach(tensor => tensor.print()); Output: Tensor [1, 2] Tensor [3, 4] Example 2: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Creating tensor2d const b = tf.tensor2d([1, 2, 3, 5, 8, 13, 21, 34, 55], [3, 3]); // Printing the tensor tf.unstack(b).forEach(tensor => tensor.print()); Output: Tensor [1, 2, 3] Tensor [5, 8, 13] Tensor [21, 34, 55] Reference: https://js.tensorflow.org/api/latest/#unstack Comment More infoAdvertise with us Next Article Tensorflow.js tf.unstack() Function T taran910 Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.tile() Function TensorFlow.js is a library for machine learning in JavaScript. It helps developers to develop ML models in JavaScript, and use ML directly in the browser or in Node.js. The tf.tile() function is used to create a Tensor by repeating the number of times given by reps. Syntax: tf.tile(x, reps)Note: Thi 2 min read Tensorflow.js tf.unique() Function Tensorflow.js is an open-source library that is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .unique() function is used to find unique elements along an axis of a tensor. Â Syntax: tf.unique (x, axis?) 2 min read Tensorflow.js tf.tidy() Function Tensorflow.js is an open-source library that is developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .tidy() function is used to execute the given function i.e. fn and once its terminated it clears up all the equidis 3 min read Tensorflow.js tf.zeros() Function Tensorflow.js is an open-source library developed by Google for running machine learning models and deep learning neural networks in the browser or node environment. The tf.zeros() function is used to create a new tensor with all elements set to zero. Syntax: tf.zeros(shape, dataType) Parameters: sh 2 min read Tensorflow.js tf.zerosLike() Function Tensorflow.js is an open-source library developed by Google for running machine learning models and deep learning neural networks in the browser or node environment. The tf.zeroslIke() is used to create a tf.tensor with all elements set to '0' with the same shape as the given tensor by passing the p 3 min read Like