Tensorflow.js tf.transpose() 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.transpose() function is used to perform a regular matrix transpose operation on the specified 2-D input tensor.
Syntax:
tf.transpose (x)
Parameters: This function accepts a parameter which is illustrated below:
- x: The specified input tensor to transpose.
 
Return Value: It returns a tensor as the output for the transpose operation.
Example 1:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs"  // Initializing a tensor of matrix along with // its dimension const a = tf.tensor2d([2, 4, 6, 8], [2, 2]);   // Calling the .transpose() function over the // above tensor as its parameter a.transpose().print(); | 
Output:
 Tensor
   [[2, 6],
    [4, 8]]
Example 2:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs"  // Using some tensor of matrix along with its dimensions // as the parameter for .transpose() functions tf.tensor2d([1, 3, 5, 7, 9, 11], [2, 3]).transpose().print();  tf.tensor2d([1, 3, 5, 7, 9, 11], [3, 2]).transpose().print(); | 
Output:
Tensor
   [[1, 7 ],
    [3, 9 ],
    [5, 11]]
Tensor
   [[1, 5, 9 ],
    [3, 7, 11]]
Reference: https://js.tensorflow.org/api/latest/#transpose
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
				
					


