Tensorflow.js tf.abs() Function Last Updated : 10 May, 2021 Comments Improve Suggest changes Like Article Like Report Tensorflow.js is an open-source library developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .abs() function is used to find the absolute value of the stated element. Syntax : tf.abs (x)Parameters: x: It is the tensor input element whose absolute value is to be computed.Return Value: It returns the absolute value of the given element. Example 1: In this example, we are defining an input tensor of integer type and then printing the absolute 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 // Defining tensor input elements const y = tf.tensor1d([-7, 8, -9, 13]); // Calling abs() method and // printing the output y.abs().print(); Output: Tensor [7, 8, 9, 13]Example 2: In this example, float type values are considered as tensor input and the parameter is passed directly to the abs function. JavaScript // Defining tensor input elements const z = tf.tensor1d([-3.91, 5.73]); // Calling abs() method and directly // passing tensor inputs res = tf.abs(z); // Prints output res.print(); Output: Tensor [3.9100001, 5.73] Reference: https://js.tensorflow.org/api/latest/#abs Comment More infoAdvertise with us Next Article Tensorflow.js tf.abs() Function nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.asin() 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 .asin() function is used to find the asin of the stated tensor elementwise. Syntax: Â tf.asin(x) Parameters: 2 min read Tensorflow.js tf.acos() Function Tensorflow.js is an open-source library developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .acos() function is used to find the acos of the stated tensor element input. Syntax: Â tf.acos(x)Parameters: Â x: It is th 2 min read Tensorflow.js tf.any() 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. It also helps the developers to develop ML models in the JavaScript language so that ML directly can be used in the browser or in Node 1 min read Tensorflow.js tf.all() 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. It also helps the developers to develop ML models in JavaScript language and can use ML directly in the browser or Node.js. The tf. al 1 min read Tensorflow.js tf.acosh() 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 .acosh() function is used to find the inverse hyperbolic cos of the stated tensor element input. Syntax: Â tf 2 min read Like