Tensorflow.js tf.losses.hingeLoss() Function Last Updated : 22 Jul, 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 Tensorflow.js tf.losses.hingeLoss() function calculates the hinge loss between two given tensors. Syntax: tf.losses.hingeLoss (labels, predictions, weights, reduction) Parameters: labels: It specifies the truth output tensor. The absolute difference is predicted based on this tensor.predictions: It specifies the predicted output tensor with the same dimensions as labels.weights: It specifies a tensor of rank either equal to that of labels so that it can be broadcastable or 0. It is an optional parameter.reduction: It specifies the type of reduction to the loss. It is an optional parameter. Return Value: It returns a tf.Tensor which is calculated by hingeLoss() function. Example 1: In this example we will take two 2d tensors as labels and predictions. Then we will find the estimated hinge loss between these two tensors. JavaScript // Importing the tensorflow.js library const tf = require("@tensorflow/tfjs"); // Defining label tensor const x_label = tf.tensor2d([ [0., 1., 0.], [1., 0., 1.] ]); // Defining prediction tensor const x_pred = tf.tensor2d([ [1., 1., 1.], [0., 0., 0. ] ]); // Calculating hinge loss const hinge_loss = tf.losses.hingeLoss(x_label,x_pred) // Printing the output hinge_loss.print() Output: Tensor 1.1666667461395264 Example 2: JavaScript // Importing the tensorflow.Js library import * as tf from "@tensorflow/tfjs" // Computing hinge loss between two // tensors and printing the result tf.losses.hingeLoss( tf.tensor4d([[[[0], [4]], [[5], [1]]]]), tf.tensor4d([[[[1], [2]], [[3], [4]]]]) ).print(); Output: Tensor 0.5 Reference: https://js.tensorflow.org/api/1.0.0/#losses.hingeLoss Comment More infoAdvertise with us Next Article Tensorflow.js tf.losses.hingeLoss() Function A abhinavjain194 Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.losses.huberLoss() 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 Ten 2 min read Tensorflow.js tf.losses.logLoss() 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 Tensorflow.js tf.losses.logLoss() function calculates the log loss between two given tensors. Syntax: tf.losses.logLoss (labels, p 2 min read Tensorflow.js tf.initializers.ones() Function Tensorflow.js is a very well-known machine learning library that used to develop a machine learning model using JavaScript. The main purpose to use this library is to run and deploy a machine learning model directly from the browser or in Node.js. Tensorflow.js is an open-source hardware-accelerated 2 min read Tensorflow.js tf.step() 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.step() function is used to return the step of the input tensor's elements i.e. it returns 1 if the element is greater than 0 el 1 min read Tensorflow.js tf.logSumExp() 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.logSumExp() function is used to calculate log sum exp of elements of a Tensor across its dimension. It reduces the given input 2 min read Like