Tuesday, September 24, 2024
Google search engine
HomeLanguagesJavascriptTensorflow.js tf.log() Function

Tensorflow.js tf.log() 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 .log() function is used to find the natural logarithm of the stated tensor input i.e. ln(x) and is done element wise.

Syntax:  

tf.log(x)

Parameters: This function accepts three parameters 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, 38, Math.E]);
  
// Calling log() method and
// printing output
y.log().print();


Output:

Tensor
    [0, 2.7080503, 3.6375861, 0.9999999]

Example 2: In this example, the parameter is passed directly to the log 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 log() method
var res = tf.log(y)
  
// Printing output
res.print();


Output:

Tensor
    [-0.6931472, 0.4054651, -0.4155154]
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!

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments