Supriya Ghosh (Editor)

Empirical risk minimization

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
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 the performance of learning algorithms.

Contents

Background

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   h : X Y (often called hypothesis) which outputs an object y Y , given x X . To do so, we have at our disposal a training set of a few examples   ( x 1 , y 1 ) , , ( x m , y m ) where x i X is an input and y i Y is the corresponding response that we wish to get from   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 m instances   ( x 1 , y 1 ) , , ( x m , y m ) 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 ( y ^ , y ) which measures how different the prediction 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 ) = E [ L ( h ( x ) , y ) ] = L ( h ( x ) , y ) d P ( x , y ) .

A loss function commonly used in theory is the 0-1 loss function: L ( y ^ , y ) = I ( y ^ y ) , where I ( ) is the indicator notation.

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

h = arg min h H R ( h ) .

Empirical risk minimization

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:

R emp ( h ) = 1 m i = 1 m L ( h ( x i ) , y i ) .

Empirical risk minimization principle states that the learning algorithm should choose a hypothesis h ^ which minimizes the empirical risk:

h ^ = arg min h H R emp ( h ) .

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

Computational complexity

Empirical risk minimization for a classification problem with 0-1 loss function is known to be an NP-hard problem even for such relatively simple class of functions as linear classifiers. Though, it can be solved efficiently when 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 0-1 loss function (like hinge loss for SVM), which is easier to optimize, or by posing assumptions on the distribution P ( x , y ) (and thus stop being agnostic learning algorithms to which the above result applies).

Literature

  • Vapnik, V. (2000). The Nature of Statistical Learning Theory. Information Science and Statistics. Springer-Verlag. ISBN 978-0-387-98780-4. 
  • References

    Empirical risk minimization Wikipedia