paint-brush
How to Select the Best Loss Function for Your AI Modelby@salmank
8,390 reads
8,390 reads

How to Select the Best Loss Function for Your AI Model

by Salman KhanNovember 17th, 2023
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

This article presents objective functions used within the realm of supervised learning techniques of regression on structured data.
featured image - How to Select the Best Loss Function for Your AI Model
Salman Khan HackerNoon profile picture


Machine learning has emerged as a powerful tool for extracting patterns, making predictions, and solving complex problems across various domains, from structured data analysis, natural language processing, and computer vision to generative AI. At its core, all machine learning algorithms can be described as an optimization process. The models take input data (and times output data) to learn complex functions that minimize or maximise a cost or objective function with additional constraints on the model parameters. The choice of the objective function plays a crucial role in shaping the behavior and performance of machine learning models.


This article presents objective functions used within the realm of supervised learning techniques of regression on structured data. By understanding the nuances and trade-offs associated with different objective functions, practitioners and researchers can make informed decisions while designing and training their machine-learning models.

Regression

Regression is a supervised learning technique to predict continuous numerical values based on input data. The objective Functions used within regression are as follows:


Objective Functions — Regression


The plot below shows the magnitude of the objective functions as the difference between predicted and actual values varies. This illustrates how the objective function behaves near zero values and how outliers are treated within each of the objective function.

Objective Function and their relative magnitude against error between predicted and actual value


Use Cases

  • Mean Squared Error (MSE) is the default generic choice for most regression problems.
  • Mean Absolute Error (MAE) is suited if a data set has a lot of outliers.
  • Mean Squared Logarithmic Error Loss (MSLE) is preferred when target values span several orders of magnitude.
  • Huber-loss combines the advantages of both MSE and MAE — robustness to outliers and a smooth transition between quadratic and linear behavior.
  • LogCosh — the logarithm of the hyperbolic cosine offers similar advantages of smooth function with less sensitivity to outliers.

Regression Objective Functions in Python — SciKit-Learn


from sklearn.linear_model import LinearRegression
from sklearn.neural_network import MLPRegressor
from sklearn.linear_model import SGDRegressor

# Mean Squared Error (MSE)
mse_model = LinearRegression()

# Mean Absolute Error (MAE)
mae_model = SGDRegressor(loss='epsilon_insensitive', epsilon=0.0, random_state=42)

# Mean Squared Logarithmic Error (MSLE)
msle_model = MLPRegressor(loss='squared_log')

# Huber Loss
huber_model = MLPRegressor(loss='huber')

# Log-cosh
logcosh_model = MLPRegressor(loss='logcosh', random_state=4

Regression Objective Functions in R — GLM

# Mean Squared Error (MSE)
mse_model <- glm(y ~ X, family = gaussian(link = "identity"))

# Mean Absolute Error (MAE)
mae_model <- glm(y ~ X, family = gaussian(link = "identity"), loss = "absolute")

# Mean Squared Logarithmic Error (MSLE)
msle_model <- glm(y ~ log(X + 1), family = gaussian(link = "identity"), loss = "squared")

# Huber Loss
huber_model <- glm(y ~ X, family = gaussian(link = "identity"), loss = "huber")

# Log-cosh
logcosh_model <- glm(y ~ X, family = gaussian(link = "identity"), loss = "log-cosh")

How do you select the best loss function for your model?

Selecting the right loss function for your data and predictive needs is a multi-faceted decision. To make the best choice, there are several important factors to consider. First and foremost, you must determine the objective of your prediction and model evaluation. Depending on your specific needs, you may be aiming for the most accurate prediction or there may be another downstream application for your model. In order to determine which objective function performs best for your dataset and needs, cross-validation is an essential tool.


Another crucial factor to consider is near-zero behavior. You must determine the appropriate penalty to assign to your model when error magnitudes are low. Additionally, if your data set includes a large number of outliers, a more robust objective function is necessary to effectively handle these outliers.


Finally, it’s important to keep in mind the assumptions made by different loss functions. For instance, RMSE is optimal for normal (Gaussian) errors, while MAE is best suited for Laplacian errors- [1]. By considering all of these important factors, you can confidently choose the right loss function to ensure accurate predictions and an effective model.


References:

  1. Hodson, T.O., 2022. Root-mean-square error (RMSE) or mean absolute error (MAE): when to use them or not. Geoscientific Model Development, 15(14), pp.5481–5487.

  2. Scikit Learn MLPRegressor — https://scikit-learn.org/stable/modules/generated/sklearn.neural_network.MLPRegressor.html

  3. Keras Regression Losses — https://keras.io/api/losses/regression_losses/

  4. R Generalized Linear Models — https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/glm


Also published here.