An Algorithm-wise Summary of Loss Functions in Machine Learning

Loss functions of 16 ML algorithms in a single frame.

Loss functions are a vital component of ML algorithms.

They specify the objective an algorithm should aim to optimize during its training.

In other words, loss functions explicitly tell the algorithm what it should minimize to improve its performance.

Therefore, knowing which loss functions are (typically) best suited for specific ML algorithms is extremely crucial.

The below visual depicts the most commonly used loss functions by various ML algorithms.

  1. Linear Regression: Mean Squared Error (MSE). This can be used with and without regularization, depending on the situation.

  2. Logistic regression: Cross-entropy loss or Log Loss, with and without regularization. Why log loss? We covered its origin here: Why Do We Use log-loss to Train Logistic Regression?

  3. Decision Tree and Random Forest:

    1. Classifier: Gini impurity or information gain.

    2. Regressor: Mean Squared Error (MSE)

  4. Support Vector Machines (SVMs): Hinge loss. It penalizes both wrong and right (but less confident) predictions. Best suited for creating max-margin classifiers, like in SVMs.

  5. k-Nearest Neighbors (kNN): No loss function. kNN is a non-parametric lazy learning algorithm. It works by retrieving instances from the training data, and making predictions based on the k nearest neighbors to the test data instance.

  6. Naive Bayes: No loss function. Can you guess why?

  7. Neural Networks: They can use a variety of loss functions depending on the type of problem. The most common ones are:

    1. Regression: Mean Squared Error (MSE).

    2. Classification: Cross-Entropy Loss.

  8. AdaBoost: Exponential loss function. AdaBoost is an ensemble learning algorithm. It combines multiple weak classifiers to form a strong classifier. In each iteration of the algorithm, AdaBoost assigns weights to the misclassified instances from the previous iteration. Next, it trains a new weak classifier and minimizes the weighted exponential loss.

  9. Other Boosting Algorithms:

    1. Regression: Mean Squared Error (MSE).

    2. Classification: Cross-Entropy Loss.

👉 Over to you: Can you tell which loss function is used in KMeans?

👉 If you liked this post, don’t forget to leave a like ❤️. It helps more people discover this newsletter on Substack and tells me that you appreciate reading these daily insights. The button is located towards the bottom of this email.

Thanks for reading!

Latest full articles

If you’re not a full subscriber, here’s what you missed last month:

To receive all full articles and support the Daily Dose of Data Science, consider subscribing:

👉 Tell the world what makes this newsletter special for you by leaving a review here :)

👉 If you love reading this newsletter, feel free to share it with friends!

Reply

or to participate.