Tensorflow.js is an open-source library which is being develop by Google for running machine learning models as well as deep learning neural networks in the browser or node environment.
The .util.shuffle() function is used to shuffle the stated array in order with the help of Fisher-Yates algorithm.
Syntax:
tf.util.shuffle(array)
Parameters:
- array: It is the stated array which is to be shuffled. It can be of type tf.any()[], Uint32Array, Int32Array, or, Float32Array.
Return Value: It returns void.
Example 1:
Javascript
import * as tf from "@tensorflow/tfjs"
const arr = [11, 12, 13, 14, 15];
tf.util.shuffle(arr);
console.log(arr);
|
Output:
14,12,11,13,15
Example 2:
Javascript
import * as tf from "@tensorflow/tfjs"
const arr = [1.1, 1.2, 1.3, 1.4, 1.5];
tf.util.shuffle(arr);
console.log(arr);
|
Output:
1.5,1.2,1.3,1.1,1.4
Reference: https://js.tensorflow.org/api_node/2.0.1/#util.shuffle
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks 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!
Last Updated :
21 May, 2021
Like Article
Save Article