Empirical risk minimization

In statistical learning theory, the principle of empirical risk minimization defines a family of learning algorithms based on evaluating performance over a known and fixed dataset.

The core idea is based on an application of the law of large numbers; more specifically, we cannot know exactly how well a predictive algorithm will work in practice (i.e. the "true risk") because we do not know the true distribution of the data, but we can instead estimate and optimize the performance of the algorithm on a known set of training data.

The performance over the known set of training data is referred to as the "empirical risk".

The following situation is a general setting of many supervised learning problems.

To put it more formally, assuming that there is a joint probability distribution

The assumption of a joint probability distribution allows for the modelling of uncertainty in predictions (e.g. from noise in data) because

For classification tasks, these loss functions can be scoring rules.

The ultimate goal of a learning algorithm is to find a hypothesis

is minimal: For classification problems, the Bayes classifier is defined to be the classifier minimizing the risk defined with the 0–1 loss function.

However, given a sample of iid training data points, we can compute an estimate, called the empirical risk, by computing the average of the loss function over the training set; more formally, computing the expectation with respect to the empirical measure: The empirical risk minimization principle[1] states that the learning algorithm should choose a hypothesis

: Thus, the learning algorithm defined by the empirical risk minimization principle consists in solving the above optimization problem.

Guarantees for the performance of empirical risk minimization depend strongly on the function class selected as well as the distributional assumptions made.

[2] In general, distribution-free methods are too coarse, and do not lead to practical bounds.

However, they are still useful in deriving asymptotic properties of learning algorithms, such as consistency.

In particular, distribution-free bounds on the performance of empirical risk minimization given a fixed function class can be derived using bounds on the VC complexity of the function class.

For simplicity, considering the case of binary classification tasks, it is possible to bound the probability of the selected classifier,

[2] These results are often based on uniform laws of large numbers, which control the deviation of the empirical risk from the true risk, uniformly over the hypothesis class.

[3] It is also possible to show lower bounds on algorithm performance if no distributional assumptions are made.

Even though a specific learning algorithm may provide the asymptotically optimal performance for any distribution, the finite sample performance is always poor for at least one data distribution.

This means that no classifier can provide on the error for a given sample size for all distributions.

It is further possible to show that the convergence rate of a learning algorithm is poor for some distributions.

[3] Empirical risk minimization for a classification problem with a 0-1 loss function is known to be an NP-hard problem even for a relatively simple class of functions such as linear classifiers.

[5] Nevertheless, it can be solved efficiently when the minimal empirical risk is zero, i.e., data is linearly separable.

[citation needed] In practice, machine learning algorithms cope with this issue 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

(and thus stop being agnostic learning algorithms to which the above result applies).

In the case of convexification, Zhang's lemma majors the excess risk of the original problem using the excess risk of the convexified problem.

[6] Minimizing the latter using convex optimization also allow to control the former.

Tilted empirical risk minimization is a machine learning technique used to modify standard loss functions like squared error, by introducing a tilt parameter.

This parameter dynamically adjusts the weight of data points during training, allowing the algorithm to focus on specific regions or characteristics of the data distribution.

Tilted empirical risk minimization is particularly useful in scenarios with imbalanced data or when there is a need to emphasize errors in certain parts of the prediction space.