Tensorflow.js tf.round() Function Last Updated : 10 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 .round() function is used to find the round value of the stated tensor input, and it is done element wise. Moreover, it is helpful in implementing banker's rounding. Syntax : tf.round(x) Parameters: This function accepts a parameter which is illustrated below: x: It is the tensor input whose round 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 float type and then printing the round 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([5.3, 1.4, 4.5, 9.4]); // Calling round() method and // printing output y.round().print(); Output: Tensor [5, 1, 4, 9] Example 2: In this example, double type values are considered as tensor input and the parameter is passed directly to the round function. JavaScript // Importing the tensorflow.js library //import * as tf from "@tensorflow/tfjs" // Defining float values var val = [8.69967679, 0.999999, 78.7823826382]; // Calling tensor1d method const y = tf.tensor1d(val); // Calling round() method var res = tf.round(y) // printing output res.print(); Output: Tensor [9, 1, 79] Comment More infoAdvertise with us Next Article Tensorflow.js tf.round() Function N nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.prod() 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.prod() function is used to calculate product of the elements of a specified Tensor across its dimension. It reduces the given i 2 min read Tensorflow.js tf.ones() Function Tensorflow.js is an open-source library for running machine learning models and deep learning neural networks in the browser or node environment. The tf.ones() function is used to create a new tensor where all elements are set to 1. Syntax: tf.ones(shape, dtype, name) Parameters: shape: It takes the 2 min read Tensorflow.js tf.pad() 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 in Node.js. The tf. 2 min read Tensorflow.js tf.range() 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. range() is used to create a new tf.Tensor1D filled with the numbers in the range provided with the help of start, stop, step, 2 min read Tensorflow.js tf.tan() 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 .tan() function is used to find the tangent of the stated tensor input and is done element wise. Syntax: tf.t 2 min read Like