Tensorflow.js tf.where() 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.where() function is used to returns the elements, either of first tensor or second tensor depending on the specified condition. If the given condition is true, it select from the first tensor else select form the second tensor.
Syntax:
tf.where (condition, a, b)
Parameters: This function accepts three parameters which are illustrated below:
- condition: The input condition which should must have Boolean datatype.
- a: The first input tensor with dimension same as the size of condition.
- b: The second input tensor with shape that is compatible with “a”. It should must have same data type as “a”.
Return Value: It returns the tensor of elements, either of first tensor or second tensor depending on the specified condition.
Example 1:
Javascript
// Importing the tensorflow.js libraryimport * as tf from "@tensorflow/tfjs"// Initializing a tensor of conditionsconst cond = tf.tensor1d([true, false, true, false], 'bool');// Initializing two tensorsconst a = tf.tensor1d([-2 , 4, -6, 8]);const b = tf.tensor1d([2, -4, 6, -8]);// Calling the .where() functiona.where(cond, b).print(); |
Output:
Tensor [-2, -4, -6, -8]
Example 2:
Javascript
// Importing the tensorflow.js libraryimport * as tf from "@tensorflow/tfjs"// Using a tensor of condition along with two tensors of // same datatype values as the parameters of the .where() functiontf.tensor1d([10, 20, 30, 40]).where(tf.tensor1d([true, false, true, false], 'bool'), tf.tensor1d([100, 200, 300, 400])).print(); |
Output:
Tensor [10, 200, 30, 400]
Reference:https://js.tensorflow.org/api/1.0.0/#where
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!



