Monday, November 18, 2024
Google search engine
HomeLanguagesJavascriptTensorflow.js tf.less() Function

Tensorflow.js tf.less() 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.less() function is used to return the tensor of Boolean values for the two specified tensor values i.e. it returns true if the value of the first tensor is less than the second tensor value else returns false. It supports broadcasting.

Syntax:

tf.less(a, b)

Parameters: This function accepts two parameters which are illustrated below:

  • a: The first input tensor.
  • b: The second input tensor. It should have values of the same data type as of Tensor “a”.

Return Value: It returns the tensor of Boolean values i.e. true if the value of the first tensor is less than the second tensor value else returns false.

Example 1:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Initializing two different tensors
const a = tf.tensor1d([2, 3, 6, 8]);
const b = tf.tensor1d([1, 4, 5, 9]);
  
// Calling the .less() function
a.less(b).print();


Output:

Tensor
   [false, true, false, true]

Example 2:

Javascript




// Importing the tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Calling the .less() function with two
// Different tensors as its parameters
tf.tensor1d([1.5, 2.060, 2, 0.05, 4.5]).
less(tf.tensor1d([1.25, 2.60, 2.0, .5, 4.05])).print();


Output:

Tensor
   [false, true, false, true, false]

Reference: https://js.tensorflow.org/api/latest/#less

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen 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!

RELATED ARTICLES

Most Popular

Recent Comments