Machine Learning — Cost Function, An Introduction

Rahul S
3 min readOct 7, 2023

The cost function measures the error in the model’s predictions and guides the optimization process towards minimizing that error.

Cost function is used to learn the parameters in the machine learning model such that the total error is as minimal as possible. It is a measure of how wrong the model is in terms of its ability to estimate the relationship between the dependent and independent variable.

It is a mathematical function that measures the difference between the predicted output of a model and the true output (also known as the target or label).

In fact, one can say that the very goal of a machine learning modelling process is to minimize the cost function, which reflects the error in the model’s predictions.

There are different types of cost functions used in machine learning, depending on the problem and the type of model being used.

src: Primo.ai

Mean Squared Error (MSE):

MSE is used in regression problems. It is defined as the average of the squared differences…

--

--