Tensorflow.js tf.floor() 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 .floor() function is used to find the floor of the stated tensor input and is done elements wise. Syntax : tf.floor(x) Parameters: x: It is the tensor input whose floor 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 floor 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([3.1, .5, -38.8, 0]); // Calling floor() method and // printing output y.floor().print(); Output: Tensor [3, 0, -39, 0] Example 2: In this example, double type values are considered as tensor input and the parameter is passed directly to the floor function. JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining double values var val = [7.56677, 0.5888899, -1.665645889]; // Calling tensor1d method const y = tf.tensor1d(val); // Calling floor() method var res = tf.floor(y) // printing output res.print(); Output: Tensor [7, 0, -2] Reference: https://js.tensorflow.org/api/latest/#floor Comment More infoAdvertise with us Next Article Tensorflow.js tf.floor() Function nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.floorDiv() 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.floorDiv() function is used to divide two Tensors element-wise and the returned result is rounded with floor function. It suppo 2 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.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.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.cos() 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 .cos() function is used to find the cosine value of the stated tensor input and is done element wise. Syntax 2 min read Like