Tensorflow.js tf.minimum() Function Last Updated : 12 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 and deep learning neural networks in the browser or node environment. The tf.minimum() function is used to return the minimum of the two specified tensors element-wise. It supports broadcasting. Syntax: tf.minimum (a, b) Parameters: This function accepts two parameters which are illustrated below: a: The first specified tensor.b: The second specified tensor. It must have same data type as "a". Return Value: It returns the minimum of the two specified tensors "a" and "b" element-wise. Example 1: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Initializing two tensors const a = tf.tensor1d([3, 5, 7, 9]); const b = tf.tensor1d([1, 6, 8, 2]); // Calling the .minimum() function a.minimum(b).print(); Output: Tensor [1, 5, 7, 2] Example 2: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Using two tensors as the parameter // for the .minimum() function tf.tensor1d([3, 5, 7, 9]).minimum(tf.tensor1d([6])).print(); Output: Tensor [3, 5, 6, 6] Example 3: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Broadcasting minimum a with b const a = tf.tensor1d([1, 2, 7, 3, 4]); const b = tf.scalar(4); // Calling the .minimum() function a.minimum(b).print(); Output: Tensor [1, 2, 4, 3, 4] Reference: https://js.tensorflow.org/api/latest/#minimum Comment More infoAdvertise with us Next Article Tensorflow.js tf.minimum() Function K Kanchan_Ray Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.min() 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.min() function is used to calculate the minimum value from the specified Tensor across its dimension. It reduces the given inpu 2 min read Tensorflow.js tf.maximum() 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.maximum() function is used to return the maximum of the two specified tensors element-wise. It supports broadcasting. Syntax: t 2 min read Tensorflow.js tf.layers.minimum() 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.layers.minimum() function is used to create a layer that is used to compute the element-wise minimum of an Array of inputs. It 2 min read Tensorflow.js tf.sum() 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.sum() function is used to calculate sum of the elements of a specified Tensor across its dimension. It reduces the given input 2 min read Tensorflow.js tf.mean() 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.mean() function is used to calculate the mean value of the specified Tensor across its dimension. It reduces the given input el 2 min read Tensorflow.js tf.print() 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 helps developers to develop ML models in JavaScript, and use ML directly in the browser or in Node.js. The tf.print() function is u 2 min read Tensorflow.js tf.max() 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.max() function is used to calculate the maximum value from the specified Tensor across its dimension. It reduces the given inpu 2 min read Tensorflow.js tf.neg() 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 .neg() function is used to calculate -1 * x i.e. input tensor and is done element wise. Syntax: Â tf.neg(x) 1 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