Saturday, October 18, 2025
HomeLanguagesJavascriptTensorflow.js tf.sigmoid() Function

Tensorflow.js tf.sigmoid() Function

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

The .sigmoid() function is used to find the sigmoid of the stated tensor input i.e. 1 / (1 + exp(-x)) and is done element wise.

Syntax:  

tf.sigmoid(x)

Parameters: This function accepts single parameter which are illustrated below:

  • x: It is the tensor input and it can be of type tf.Tensor, or 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, 15, 0, Math.E-1]);
  
// Calling sigmoid() method and
// printing output
y.sigmoid().print();


Output:

Tensor
    [0.2689414, 0.9999996, 0.5, 0.8479074]

Example 2: In this example, the parameter is passed directly to the sigmoid function.

Javascript




// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining float values
var val = [0.5, -1.5, .66];
  
// Calling tensor1d method
const y = tf.tensor1d(val);
  
// Calling sigmoid() method
var res = tf.sigmoid(y)
  
// Printing output
res.print();


Output:

Tensor
    [0.6224594, 0.1824255, 0.6592603]
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
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS