Tensorflow.js tf.argMax() Function Last Updated : 18 May, 2021 Summarize Comments Improve Suggest changes Share 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.argMax() function is used to return the indices for the maximum values of the specified Tensor along an axis. The output result has the same shape as input with the dimension along the axis removed. Syntax: tf.argMax (x, axis) Parameters: This function accepts two parameters which are illustrated below: x: The input tensor.axis: The specified dimension(s) to reduce. It is an optional parameter and its default value is 0. Return Value: It returns a Tensor of the indices of the maximum values along an axis. Example 1: JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Initializing a some tensors const a = tf.tensor1d([1, 0]); const b = tf.tensor1d([3, 5]); const c = tf.tensor1d([6, 3, 5, 12]); // Calling the .argMax() function over // the above tensors a.argMax().print(); b.argMax().print(); c.argMax().print(); Output: Tensor 0 Tensor 1 Tensor 3 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([9, 5, 2, 8], [2, 2]); const c = tf.tensor1d([6, 4, 7]); // Initializing a axis parameters const axis1 = -1; const axis2 = -2; const axis3 = 0; // Calling the .argMax() function over // the above tensors a.argMax(axis1).print(); b.argMax(axis2).print(); c.argMax(axis3).print(); Output: Tensor 1 Tensor [0, 1] Tensor 2 Reference: https://js.tensorflow.org/api/latest/#argMax Comment More infoAdvertise with us Next Article Tensorflow.js tf.atan() Function K Kanchan_Ray Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.argMin() 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.argMin() function is used to return the indices for the minimum values of the specified Tensor along an axis. The output result 2 min read Tensorflow.js tf.atan() 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 .atan() function is used to find the atan of the stated tensor input and is done element wise. Syntax : Â tf. 2 min read Tensorflow.js tf.atan2() 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 .atan2() function is used to find the arctangent of the stated tensor inputs and is done element wise. Moreov 2 min read Tensorflow.js tf.exp() 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 .exp() function is used to find the exponential value i.e, (e^x) of the stated tensor input, and it is done e 2 min read Tensorflow.js tf.atanh() 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 .atanh() function is used to find the inverse hyperbolic tan of the stated tensor input and is done elements 2 min read Tensorflow.js tf.batchNorm() 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 .batchNorm() function is useful in batch normalization. Moreover, the mean, variance, scale, including offset can b 2 min read Like