Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 857 Bytes

cost-vs-loss.md

File metadata and controls

12 lines (10 loc) · 857 Bytes

What is the difference between a cost function and a loss function in machine learning?

The terms cost and loss functions are synonymous (some people also call it error function). The more general scenario is to define an objective function first, which we want to optimize. This objective function could be to

  • maximize the posterior probabilities (e.g., naive Bayes)
  • maximize a fitness function (genetic programming)
  • maximize the total reward/value function (reinforcement learning)
  • maximize information gain/minimize child node impurities (CART decision tree classification)
  • minimize a mean squared error cost (or loss) function (CART, decision tree regression, linear regression, adaptive linear neurons, ...
  • maximize log-likelihood or minimize cross-entropy loss (or cost) function
  • minimize hinge loss (support vector machine) ...