Tensorflow.js tf.isFinite() 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 .isFinite() function is used to find the finite elements of the stated tensor input. Syntax : tf.isFinite(x) Parameters: 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. However, it returns true for finite elements and false for infinite ones. Example 1: In this example, we are defining an input tensor and then printing the true for the finite value of it and false for the infinite ones. 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, .5, -38.8, NaN]); // Calling isFinite() method and // printing output y.isFinite().print(); Output: Tensor [true, true, true, false] Example 2: In this example, the parameter is passed directly to the isFinite function. JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining tensor input var val = [Infinity, null, 5.78799797]; // Calling tensor1d method const y = tf.tensor1d(val); // Calling floor() method var res = tf.isFinite(y) // printing output res.print(); Output: Tensor [false, true, true] Reference: https://js.tensorflow.org/api/latest/#isFinite Comment More infoAdvertise with us Next Article Tensorflow.js tf.isFinite() Function nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.isInf() 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 .isInf() function is used to find the Infinity or -Infinity elements of the stated tensor input. Syntax: Â t 2 min read Tensorflow.js tf.isNaN() 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 .isNaN() function is used to find the NaN elements of the stated tensor input. Syntax: Â tf.isNaN(x) Paramet 2 min read Tensorflow.js tf.gather() 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 .gather() function is used to collect the fragments from the stated tensor x's axis as per the stated indices. Synt 2 min read Tensorflow.js tf.greater() 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.greater() function is used to return the tensor of Boolean values for the two specified tensor values i.e. it returns true if t 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 Like