Tensorflow.js tf.max() Function Last Updated : 18 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.max() function is used to calculate the maximum value from the specified Tensor across its dimension. It reduces the given input elements along the dimensions of axes. If the parameter "keepDims" is true, the reduced dimensions are retained with length 1 else the rank of Tensor is reduced by 1. If the axes parameter has no entries, it returns a Tensor with a single element with all reduced dimensions. Syntax: tf.max (x, axis?, keepDims?) Parameters: This function accepts three parameters which are illustrated below: x: The input tensor for which maximum value is being computed.axis: The specified dimension(s) to reduce. By default it reduces all dimensions. It is optional parameter.keepDims: If this parameter value is true, it retains reduced dimensions with length 1 else the rank of Tensor is reduced by 1. It is also optional parameter. Return Value: It returns a Tensor of maximum value. Example 1: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Initializing a some tensors const a = tf.tensor1d([0, 1]); const b = tf.tensor1d([3, 5]); const c = tf.tensor1d([2, 4, 7]); // Calling the .max() function over // the above tensors a.max().print(); b.max().print(); c.max().print(); Output: Tensor 1 Tensor 5 Tensor 7 Example 2: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Initializing a some tensors const a = tf.tensor1d([0, 1]); const b = tf.tensor2d([3, 5, 2, 8], [2, 2]); const c = tf.tensor1d([2, 4, 7]); // Initializing a axis parameters const axis1 = -1; const axis2 = -2; const axis3 = 0; // Calling the .max() function over // the above tensors a.max(axis1).print(); b.max(axis2, true).print(); c.max(axis1, false).print(); b.max(axis3, false).print(); Output: Tensor 1 Tensor [[3, 8],] Tensor 7 Tensor [3, 8] Reference:https://js.tensorflow.org/api/latest/#max Comment More infoAdvertise with us Next Article Tensorflow.js tf.max() Function K Kanchan_Ray Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads 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.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.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.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.norm() 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.norm() function is used compute the norm of matrices, vectors, and scalar. This function can also compute several other vector 2 min read Like