Wednesday, September 17, 2025
HomeLanguagesJavascriptTensorflow.js tf.logicalNot() Function

Tensorflow.js tf.logicalNot() 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.logicalNot() function is used to return a tensor of Boolean values for the result of element-wise NOT operation on the specified tensor of Boolean values.

Syntax:  

tf.logicalNot(a, b)

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

  • a: The first input tensor. It should have a Boolean datatype.
  • b: The second input tensor. It must have a Boolean datatype.

Return Value: It returns a tensor of Boolean values for the result of element-wise NOT operation on the specified tensor of Boolean values.

Example 1:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Initializing some tensors of boolean values
const a = tf.tensor1d([false, true], 'bool');
const b = tf.tensor1d([true, false], 'bool');
  
// Calling the .logicalNot() function
a.logicalNot().print();
b.logicalNot().print();


Output:

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

Example 2:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Using tensors of boolean values as
// the parameters of .logicalNot() function
tf.tensor1d([false, false], 'bool').logicalNot().print();
tf.tensor1d([true, true], 'bool').logicalNot().print();


Output:

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

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

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

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6660 POSTS0 COMMENTS
Nicole Veronica
11833 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7050 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS