Empirical risk minimization

 Empirical risk minimization (ERM) is a principle in statistical learning theory which defines a family of learning algorithms and is used to give theoretical bounds on their performance. The core idea is that we cannot know exactly how well an algorithm will work in practice (the true "risk") because we don't know the true distribution of data that the algorithm will work on, but we can instead measure its performance on a known set of training data (the "empirical" risk).

BackgroundEdit

Consider the following situation, which is a general setting of many supervised learning problems. We have two spaces of objects X and Y and would like to learn a function {\displaystyle \ h:X\to Y} (often called hypothesis) which outputs an object y\in Y, given x\in X. To do so, we have at our disposal a training set of n examples {\displaystyle \ (x_{1},y_{1}),\ldots ,(x_{n},y_{n})} where x_{i}\in X is an input and y_{i}\in Y is the corresponding response that we wish to get from {\displaystyle \ h(x_{i})}.

To put it more formally, we assume that there is a joint probability distribution P(x,y) over X and Y, and that the training set consists of n instances {\displaystyle \ (x_{1},y_{1}),\ldots ,(x_{n},y_{n})} drawn i.i.d. from P(x,y). Note that the assumption of a joint probability distribution allows us to model uncertainty in predictions (e.g. from noise in data) because y is not a deterministic function of x, but rather a random variable with conditional distribution P(y|x) for a fixed x.

We also assume that we are given a non-negative real-valued loss function L({\hat  {y}},y) which measures how different the prediction {\hat {y}} of a hypothesis is from the true outcome y. The risk associated with hypothesis h(x) is then defined as the expectation of the loss function:

R(h)={\mathbf  {E}}[L(h(x),y)]=\int L(h(x),y)\,dP(x,y).

A loss function commonly used in theory is the 0-1 loss function{\displaystyle L({\hat {y}},y)={\begin{cases}1&{\mbox{ If }}\quad {\hat {y}}\neq y\\0&{\mbox{ If }}\quad {\hat {y}}=y\end{cases}}}.

The ultimate goal of a learning algorithm is to find a hypothesis h^{*} among a fixed class of functions {\mathcal {H}} for which the risk R(h) is minimal:

h^{*}=\arg \min _{{h\in {\mathcal  {H}}}}R(h).

Empirical risk minimizationEdit

In general, the risk R(h) cannot be computed because the distribution P(x,y) is unknown to the learning algorithm (this situation is referred to as agnostic learning). However, we can compute an approximation, called empirical risk, by averaging the loss function on the training set:

{\displaystyle \!R_{\text{emp}}(h)={\frac {1}{n}}\sum _{i=1}^{n}L(h(x_{i}),y_{i}).}

The empirical risk minimization principle[1] states that the learning algorithm should choose a hypothesis {\hat {h}} which minimizes the empirical risk:

{\displaystyle {\hat {h}}=\arg \min _{h\in {\mathcal {H}}}R_{\text{emp}}(h).}

Thus the learning algorithm defined by the ERM principle consists in solving the above optimization problem.

PropertiesEdit

Computational complexityEdit

Empirical risk minimization for a classification problem with a 0-1 loss function is known to be an NP-hard problem even for such a relatively simple class of functions as linear classifiers.[2] Though, it can be solved efficiently when the minimal empirical risk is zero, i.e. data is linearly separable.

In practice, machine learning algorithms cope with that either by employing a convex approximation to the 0-1 loss function (like hinge loss for SVM), which is easier to optimize, or by imposing assumptions on the distribution P(x,y) (and thus stop being agnostic learning algorithms to which the above result applies).

This article uses material from the Wikipedia article
 Metasyntactic variable, which is released under the 
Creative Commons
Attribution-ShareAlike 3.0 Unported License
.