Jump to content

Iteratively reweighted least squares

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 3mta3 (talk | contribs) at 13:39, 21 April 2009. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

The method of iteratively reweighted least squares (IRLS) is used to solve certain non-linear least squares problems. It is used to solve objective functions of the form:

by an iterative method in which each step involves solving a standard weighted linear least squares problem of the form:

IRLS is used to find the maximum likelihood estimates of a generalized linear model, and in robust regression to find an M-estimator, as a way of mitigating the influence of outliers in an otherwise normally-distributed data set. For example, by minimizing the least absolute error rather than the least square error.

Although not a linear regression problem, Weiszfeld's algorithm for approximating the geometric median can also be viewed as a special case of iteratively reweighted least squares, in which the objective function is the sum of distances of the estimator from the samples.

The method

Starting with a diagonal weighting matrix equal to the identity matrix and a linear problem , the (weighted) linear equation

is formed. The least squares solution of this equation is then found using standard linear algebra methods. The residuals

are calculated and the weighting matrix is updated to some non-negative function of the residuals, r, e.g.,

With these new weights, the weighted least squares equation is re-solved and the residuals are re-calculated. The process can be iterated many times.

The solution to which this iterative process converges is the minimizer of an objective function related to the function . With the objective is the least absolute deviation .

Convergence

Convergence of the method is not guaranteed. For example, choosing f(r) = |r|p with p < −1 or p ≥ 1 may cause successive solutions to keep oscillating without converging to a limit.

References