How is the squared hinge loss function formula calculated?

How is the squared hinge loss function formula calculated?
9 min read

For binary classification issues, squared hinge loss is an alternative to cross-entropy that can be used as a loss function.

While it can be used with other types of models, Support Vector Machine (SVM) models are where its strengths lie.

When dealing with binary classification, where the answer values can only be -1 or 1, this technique is employed.

To illustrate, the hinge loss function allows for valid cases to have the right sign. When the sign of the actual and predicted numbers is different, it gives a larger inaccuracy.

On binary classification tasks, the performance of models with a hinge loss function is inconsistent, sometimes outperforming cross-entropy and other times underperforming.

Let's look at an example to see if we can have a better grasp of what hinge loss is all about.

The hinge's versatility is both its strength and its weakness. Hinge loss is a purely mathematical concept, but there is a variant that can be applied to classification issues. In the context of machine learning, hinge loss is exclusively associated with support vector machines (SVMs).

Take a look at the data in the table below as an illustration.

Assume a 0.22 percent margin.

For the sake of illustration, we have treated the preceding table as though it were a hypothetical SVM. The goal is to use a two-way "yes/no" scale. You can categorize things as either class -1 or +1 (boy or girl, spam or nonspam, etc.).

An SVM classifier takes in predictor values and outputs a score between -1 and +1. For instance, you could have a value of +0.3873 or -0.4548.

Any positive value for the computed output indicates a class +1 model prediction, while any negative value indicates a class -1 model prediction. However, the margin is crucial in the SVM model.

The above table displays the calculated and actual values with a margin of 0.22.

What the margin truly does is something we should observe.

In scenario 1. There is no hinge loss predicted for case 0 where the real value is +1 and the computed value is 0.560. This is because the computed value is larger than the margin of 0.22.

The predicted value of 0.270 for case 1 is also more than the margin of 0.22, indicating that there would be no hinge loss in this scenario, even if the actual value is +1.

In scenario 2. The computed value is +0.150, while the actual value is +1, indicating a valid classification; however, the computed value is less than the margin of 0.22, indicating a slight hinge loss.

In scenario 3. where the true value is 1, but the computed value is -0.240, we have a serious misclassification and a substantial hinge loss.

In scenario 4. the actual value is -1, whereas the computed value is -0.360, indicating an accurate categorization and a lack of hinge loss because of the large discrepancy between the two values (0.22).

In Scenario 5. It has the same circumstances as case 4 above, with an actual of -1 and a computed value of -0.970, indicating that no hinge loss occurs.

In Scenario 6. It has an actual value of -1 and a computed value of -0.05, indicating a valid classification with significant hinge loss because of the proximity of the two values.

In Scenario 7. It has a substantial hinge loss since the actual value is -1 and the computed value is +0.250. This indicates that the classification is incorrect.

Let me then briefly sum up,

  1. If a computed value forecasts a correct classification and is larger than the margin, then there will be no hinge loss while dealing with an SVM classifier model.
  2. A tiny hinge loss occurs if the computed value provides a proper categorization but is too near to zero (where too close is specified by a margin).
  3. Furthermore, a computed value always results in a relatively substantial hinge loss if it incorrectly classifies data.
  4.  

Using Python to Implement Hinge Loss

Create a tiny Multilayer Perceptron (MLP) with a loss of hinge loss.

# Hinge-loss multi-layer perceptron for the circle's problem

Make sure to import make circles from sklearn. datasets and Keras. models. Import layers sequentially from Keras.layers High-density import from Keras. optimizers Use SGD from matplotlib, import pyplot from NumPy, and then use where.

# produce a dataset for 2d classification using make circles(n samples=1000, noise=0.1, random state=1)

y[where(y == 0)] = -1 # split into train and test n train = 500 # transform [0,1] to [-1,1]

testX = [X,n train], X[n train],

testy = y[n train:], trainy = y[n train:].

Model = Sequential() model; # define.

Model += add(Dense(50, input dim=2, activation='relu,' kernel initializer='he uniform')).

opt = SGD (lr=0.01, momentum=0.9) model after adding (Dense(1,'tanh')).

metric=['accuracy'], optimizer=['opt'], loss=['hinge'], compile

Model. fit(trainX, trainy, validation data=(tests, testy), epochs=200, verbose=0) #fits the model using the given data.

train acc = model.evaluate(trainX, trainy, verbose=0) is an example of a model evaluation.

Model.evaluate(tests, testy, verbose=0); _, test acc;

print('

To train: %.3f and to test: %.3f'% (train acc, test acc)

"# Training Disengagement"

pyplot.subplot(211)

pyplot.title('Loss')

label='train' = pyplot.plot(history.history['loss'])

label='test': pyplot.plot(history.history['Val loss']);

pyplot.legend()

Prediction precision in training

pyplot.subplot(212)

pyplot.title('Accuracy')

label='train' = pyplot.plot(history.history['accuracy']);

label='test': pyplot.plot(history.history['val accuracy'], history).

pyplot.legend() \spyplot.show()

As a result of running the aforementioned code, we get line graphs of Hinge Loss and Classification Accuracy over Training Epochs for the two circles binary classification issue and a printout of our training and testing loss.

Train: 0.791 Test: 0.738

See below for a line graph comparing training and testing loss:

Loss of square hinge

The number of variants of hinge loss available for use with support vector machines is substantial.

Squared Hinge Loss is a widely used add-on. The square of the hinge loss value is all that's being calculated. The squared hinge loss tends to smooth out the topography of the error function, making it more amenable to numerical manipulation.

It has been found that a squared hinge loss may be appropriate when the hinge loss calls for improved performance on a certain binary classification challenge. The hinge loss function requires the target variable to be restricted to the range [-1, 1].

Using Python, it's easy to implement; to use squared hinge as the loss function, simply alter the compile () function during model construction.

Let's check out the python code for a basic multi-perceptron layer model and see how it works.

The Squared Hinge loss algorithm was written in Python and is here implemented.

learn. datasets import multi-layer perceptron with squared hinge loss for the circle's problem makes circles imported into Keras. models Import layers sequentially from Keras. layers Concentrated on Keras. optimizers import Use SGD from matplotlib, import pyplot from NumPy, and then use where.

produce a dataset for 2d classification using make circles(n samples=1000, noise=0.1, random state=1)

modify y such that [where(y == 0) y] becomes [-1,1] = -1

divide information into training and evaluation sets n train = 500

test = X[n train,n], and trains = X[n train,n]

testy = y[n train:], trainy = y[n train:].

Model = Sequential() model; # define.

Model += add(Dense(50, input dim=2, activation='relu,' kernel initializer='he uniform')).

opt = SGD (lr=0.01, momentum=0.9) model after adding (Dense(1,'tanh')).

metric=['accuracy'], optimizer=['opt'], loss=['squared hinge'], compile

To model past events, we can use the formula #fit model history=model.

Specifically: fit(trainX, trainy, validation data=(testX, testy), epochs=200, verbose=0)

To # assess the model, we have train acc = model.

execute(eval(trainX, trainy, verbose=0))

Model.evaluate(tests, testy, verbose=0); _, test acc;

In this case, the output would be: print('Train:%.3f, Test:%.3f') (trial, production)

"# Training Disinterest and Loss of Motivation"

pyplot.subplot(211)

History. history['loss'], label='train', History. history['Val loss'], label='test', pyplot. legend('Loss'), and pyplot.title('Loss') ()

Prediction precision in training

pyplot.subplot(212)

Title = "Accuracy," Plot = "history.history['accuracy'], label = "train," Plot = "history.history['val accuracy'], label = "test," Legend = "Accuracy," Plot = "history.history['val accuracy'], label = "test," Show = "pyplot.legend()" ()

Output:

As an introduction, the preceding code will show both the training and test loss, and then it will plot a line between the two.

square plots The impact of Hinge Loss and Training Epoch Number on Two-Circles Classification Accuracy.

Score on the Training Round: 0.685; Score on the Testing Round: 0.643

See below for a line graph comparing training and testing loss:

Displaying squared hinge loss and classification accuracy as line plots over training iterations

Summary

In this article, you learned why Hinge loss and Squared Hinge loss are so crucial. Please visit InsideAIML for more blogs and courses on data science, machine learning, AI, and cutting-edge technology.

As always, thank you.



In case you have found a mistake in the text, please send a message to the author by selecting the mistake and pressing Ctrl-Enter.
Scarlett Watson 1.4K
I am a professional writer and blogger. I’m researching and writing about innovation, Blockchain, technology, business, and the latest Blockchain marketing tren...

I am a professional writer and blogger. I’m researching and writing about innovation, Health, technology, business, and the latest digital marketing trends. 

Comments (0)

    No comments yet

You must be logged in to comment.

Sign In / Sign Up