Saturday, February 21, 2026
HomeLanguagesJavascriptTensorflow.js tf.sign() Function

Tensorflow.js tf.sign() Function

Tensorflow.js is an open-source library that is developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment.

The .sign() function is used to find the indication of the stated sign of a given number and is done element wise.

Syntax :  

tf.sign(x)

Parameters:  

  • x: It is the stated tensor input, and it can be of type tf.Tensor, TypedArray, or Array.

Return Value: It returns the tf.Tensor object.

Example 1:   

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input elements
const y = tf.tensor1d([1, 7.6, 0, NaN, -4, .91]);
  
// Calling sign() method and
// Printing output
y.sign().print();


Output:

Tensor
    [1, 1, 0, 0, -1, 1]

Example 2: 

Javascript




// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input
var val = [1.5, .4, .22, null, 'a'];
  
// Calling tensor1d method
const y = tf.tensor1d(val);
  
// Calling sign() method
var res = tf.sign(y)
  
// Printing output
res.print();


Output:

Tensor
    [1, 1, 1, 0, 0]

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

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

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS