EasyDeepLearn

What is Empirical Risk Minimization?

medium

Answer

  • ERM is the standard learning principle: pick the hypothesis in your class that minimizes the average loss on the training sample, as a proxy for the true (unknown) expected loss.
  • It works when the class is not too flexible relative to the sample size — otherwise you overfit.
  • Structural risk minimization adds a complexity penalty (regularization) to trade off training loss and capacity.
Check yourself — multiple choice
  • ERM minimizes test loss directly
  • ERM minimizes training loss as a proxy for expected loss
  • ERM removes the need for regularization
  • ERM requires access to the true data distribution

ERM = minimize sample average loss; SRM adds a complexity penalty to control overfitting.

#theory#optimization

Practise Supervised Learning

215 interview questions in this topic.

Related questions