Open In App

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:



Return Value: It returns the tensor of elements, either of first tensor or second tensor depending on the specified condition.

Example 1:




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
 
// Initializing a tensor of conditions
const cond = tf.tensor1d([true, false, true, false], 'bool');
 
// Initializing two tensors
const a = tf.tensor1d([-2 , 4, -6, 8]);
const b = tf.tensor1d([2, -4, 6, -8]);
 
// Calling the .where() function
a.where(cond, b).print();

Output:

Tensor
   [-2, -4, -6, -8]

Example 2:




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
 
// Using a tensor of condition along with two tensors of
// same datatype values as the parameters of the .where() function
tf.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
 

Article Tags :