Tensorflow.js tf.log() Function Last Updated : 12 May, 2021 Comments Improve Suggest changes Like Article Like Report 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] Comment More infoAdvertise with us Next Article Tensorflow.js tf.log() Function N nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.log1p() 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 .log1p() function is used to find the natural logarithm of the stated tensor input plus one i.e. ln(1 + x) an 1 min read Tensorflow.js tf.pow() 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.pow() function is used to compute the power of one specified tensor to another. It supports broadcasting. Syntax: tf.power(base 1 min read Tensorflow.js tf.neg() Function Tensorflow.js is an open-source library which is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .neg() function is used to calculate -1 * x i.e. input tensor and is done element wise. Syntax: Â tf.neg(x) 1 min read Tensorflow.js tf.selu() 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 .selu() function is used to find the scaled exponential linear and is done element wise. Syntax: Â tf.selu(x) Where 1 min read Tensorflow.js tf.logSumExp() 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.logSumExp() function is used to calculate log sum exp of elements of a Tensor across its dimension. It reduces the given input 2 min read Like