Tensorflow.js tf.erf() Function Last Updated : 14 Mar, 2022 Comments Improve Suggest changes Like Article Like Report 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 .erf() function is used to find the gauss error function of the stated tensor input and is done elements wise. Syntax : tf.erf(x) Parameters: x: It is the tensor input whose gauss error function value is to be computed, and it can be of type tf.Tensor, or TypedArray, or Array. Return Value: It returns the tf.Tensor object. Example 1: In this example, we are defining an input tensor of integer type and then printing the gauss error function value of it. For creating an input tensor we are utilizing the .tensor1d() method and in order to print the output we are using the .print() method. JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining tensor input elements const y = tf.tensor1d([1, 25, 16, 0]); // Calling erf() method and // printing output y.erf().print(); Output: Tensor [0.8427007, 1, 1, 0] Example 2: In this example, float type values are considered as tensor input and the parameter is passed directly to the erf 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 erf() method var res = tf.erf(y) // printing output res.print(); Output: Tensor [0.5204999, 0.9661053, 0.6493767] Reference: https://js.tensorflow.org/api/latest/#erf Comment More infoAdvertise with us Next Article Tensorflow.js tf.erf() Function nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.elu() 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 .elu() function is used to find the exponential linear of the stated tensor input and is done elements wise. 2 min read Tensorflow.js tf.exp() 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 .exp() function is used to find the exponential value i.e, (e^x) of the stated tensor input, and it is done e 2 min read Tensorflow.js tf.eye() Function Tensorflow.js is an open-source library for creating machine learning models in Javascript that allows users to run the models directly in the browser. The tf.eye() is a function defined in the class tf.Tensor. Itâs used to create an identity matrix of specified rows and columns. An identity matrix 3 min read Tensorflow.js tf.fill() Function Tensorflow.js is an open-source library for creating machine learning models in Javascript that allows users to run the models directly in the browser. The tf.fill() is a function defined in the class tf.Tensor. It is used to create a tensor that is filled with a scalar value. Syntax: tf.fill( shape 2 min read Tensorflow.js tf.ceil() Function Tensorflow.js is an open-source library which is being developed, and by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .ceil() function is used to find ceiling of the stated tensor input and is done element wise. Syntax : 2 min read Like