Harman Patil (Editor)

Regularized least squares

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Regularized least squares

Regularized least squares (RLS) is a family of methods for solving the least-squares problem while using regularization to further constrain the resulting solution.

Contents

RLS is used for two main reasons. The first comes up when the number of variables in the linear system exceeds the number of observations. In such settings, the ordinary least-squares problem is ill-posed and is therefore impossible to fit because the associated optimization problem has infinitely many solutions. RLS allows the introduction of further constraints that uniquely determine the solution.

The second reason that RLS is used occurs when the number of variables does not exceed the number of observations, but the learned model suffers from poor generalization. RLS can be used in such cases to improve the generalizability of the model by constraining it at training time. This constraint can either force the solution to be "sparse" in some way or to reflect other prior knowledge about the problem such as information about correlations between features. A Bayesian understanding of this can be reached by showing that RLS methods are often equivalent to priors on the solution to the least-squares problem.

General formulation

Consider a learning setting given by a probabilistic space ( X × Y , ρ ( X , Y ) ) , Y R . Let S = { x i , y i } i = 1 n denote a training set of n pairs i.i.d. with respect to ρ . Let V : Y × R [ 0 ; ) be a loss function. Define F as the space of the functions such that expected risk:

ε ( f ) = V ( y , f ( x ) ) d ρ ( x , y )

is well defined. The main goal is to minimize the expected risk:

inf f F ε ( f )

Since the problem cannot be solved exactly there is a need to specify how to measure the quality of a solution. A good learning algorithm should provide an estimator with a small risk.

As the joint distribution ρ is typically unknown, the empirical risk is taken. For regularized least squares the square loss function is introduced:

ε ( f ) = 1 n i = 1 n V ( y i , f ( x i ) ) = 1 n i = 1 n ( y i f ( x i ) ) 2

However, if the functions are from a relatively unconstrained space, such as the set of square-integrable functions on X , this approach may overfit the training data, and lead to poor generalization. Thus, it should somehow constrain or penalize the complexity of the function f . In RLS, this is accomplished by choosing functions from a reproducing kernel Hilbert space (RKHS) H , and adding a regularization term to the objective function, proportional to the norm of the function in H :

inf f F ε ( f ) + λ R ( f ) , λ > 0

Definition of RKHS

A RKHS can be defined by a symmetric positive definite kernel function K ( x , z ) with the reproducing property:

K x , f H = f ( x ) ,

where K x ( z ) = K ( x , z ) . The RKHS for a kernel K consists of the completion of the space of functions spanned by { K x x X } : f ( x ) = i = 1 n α i K x i ( x ) , f H , where all α i are real numbers. Some commonly used kernels include the linear kernel, inducing the space of linear functions:

K ( x , z ) = x T z ,

the polynomial kernel, inducing the space of polynomial functions of order d :

K ( x , z ) = ( x T z + 1 ) d ,

and the Gaussian kernel:

K ( x , z ) = e x z 2 σ 2 .

Note that for an arbitrary loss function V , this approach defines a general class of algorithms named Tikhonov regularization. For instance, using the hinge loss leads to the support vector machine algorithm, and using the epsilon-insensitive loss leads to support vector regression.

Arbitrary kernel

The representer theorem guarantees that the solution can be written as:

f ( x ) = i = 1 n c i K ( x i , x ) for some c R n .

The minimization problem can be expressed as:

min c R n 1 n Y K c R n 2 + λ f H 2 ,

where, with some abuse of notation, the i , j entry of kernel matrix K (as opposed to kernel function K ( , ) ) is K ( x i , x j ) .

For such a function,

f H 2 = f , f H = i = 1 n c i K ( x i , ) , j = 1 n c j K ( x j , ) H = i = 1 n j = 1 n c i c j K ( x i , ) , K ( x j , ) H = i = 1 n j = 1 n c i c j K ( x i , x j ) = c T K c ,

The following minimization problem can be obtained:

min c R n 1 n Y K c R n 2 + λ c T K c .

As the sum of convex functions is convex, the solution is unique and its minimum can be found by setting the gradient w.r.t c to 0 :

1 n K ( Y K c ) + λ K c = 0 K ( K + λ n I ) c = K Y c = ( K + λ n I ) 1 Y ,

where c R n .

Complexity

The complexity of training is basically the cost of computing the kernel matrix plus the cost of solving the linear system which is roughly O ( n 3 ) . The computation of the kernel matrix for the linear or Gaussian kernel is O ( n 2 D ) . The complexity of testing is O ( n ) .

Prediction

The prediction at a new test point x is:

f ( x ) = i = 1 n c i K ( x i , x ) = K ( X , X ) T c

Linear kernel

For convenience a vector notation is introduced. Let X be an n × d matrix, where the rows are input vectors, and Y a n × 1 vector where the entries are corresponding outputs. In terms of vectors, the kernel matrix can be written as K = X X T . The learning function can be written as:

f ( x ) = K x c = x T X T c = x T w

Here we define w = X T c , w R d . The objective function can be rewritten as:

1 n Y K c R n 2 + λ c T K c = 1 n y X X T c R n 2 + λ c T X X T c = 1 n y X w R n 2 + λ w R d 2

The first term is the objective function from ordinary least squares (OLS) regression, corresponding to the residual sum of squares. The second term is a regularization term, not present in OLS, which penalizes large w values. As a smooth finite dimensional problem is considered and it is possible to apply standard calculus tools. In order to minimize the objective function, the gradient is calculated with respect to w and set it to zero:

X T X w X T y + λ n w = 0 w = ( X T X + λ n I ) 1 X T y

This solution closely resembles that of standard linear regression, with an extra term λ I . If the assumptions of OLS regression hold, the solution w = ( X T X ) 1 X T y , with λ = 0 , is an unbiased estimator, and is the minimum-variance linear unbiased estimator, according to the Gauss-Markov theorem. The term λ n I therefore leads to a biased solution; however, it also tends to reduce variance. This is easy to see, as the covariance matrix of the w -values is proportional to ( X T X + λ n I ) 1 , and therefore large values of λ will lead to lower variance. Therefore, manipulating λ corresponds to trading-off bias and variance. For problems with high-variance w estimates, such as cases with relatively small n or with correlated regressors, the optimal prediction accuracy may be obtained by using a nonzero λ , and thus introducing some bias to reduce variance. Furthermore, it is not uncommon in machine learning to have cases where n < d , in which case X T X is rank-deficient, and a nonzero λ is necessary to compute ( X T X + λ n I ) 1 .

Complexity

The parameter λ controls the invertibility of the matrix X T X + λ n I . Several methods can be used to solve the above linear system, Choleski decomposition being probably the method of choice, since the matrix X T X + λ n I is symmetric and positive definite. The complexity of this method is O ( n D 2 ) for training and O ( D ) for testing. The cost O ( n D 2 ) is essentially that of computing X T X , whereas the inverse computation (or rather the solution of the linear system) is roughly O ( D 3 ) .

Feature maps and Mercer's theorem

In this section it will be shown how to extend RLS to any kind of reproducing kernel K. Instead of linear kernel a feature map is considered Φ : X F for some Hilbert space F , called the feature space. In this case the kernel is defined as: The matrix X is now replaced by the new data matrix Φ , where Φ i j = ϕ j ( x i ) , or the j -th component of the ϕ ( x i ) .

K ( x , x ) = Φ ( x ) , Φ ( x ) F .

It means that for a given training set K = Φ Φ T . Thus, the objective function can be written as:

min c R n Y Φ Φ T R n 2 + λ c T Φ Φ T c

This approach is known as the kernel trick. This technique can significantly simplify the computational operations. If F is high dimensional, computing ϕ ( x i ) may be rather intensive. If the explicit form of the kernel function is known, we just need to compute and store the n × n kernel matrix K .

In fact, the Hilbert space F need not be isomorphic to R m , and can be infinite dimensional. This follows from Mercer's theorem, which states that a continuous, symmetric, positive definite kernel function can be expressed as:

K ( x , z ) = i = 1 σ i e i ( x ) e i ( z )

where e i ( x ) form an orthonormal basis for 2 ( X ) , and σ i R . If feature maps is defined ϕ ( x ) with components ϕ i ( x ) = σ i e i ( x ) , it follows that K ( x , z ) = ϕ ( x ) , ϕ ( z ) . This demonstrates that any kernel can be associated with a feature map, and that RLS generally consists of linear RLS performed in some possibly higher-dimensional feature space. While Mercer's theorem shows how one feature map that can be associated with a kernel, in fact multiple feature maps can be associated with a given reproducing kernel. For instance, the map ϕ ( x ) = K x satisfies the property K ( x , z ) = ϕ ( x ) , ϕ ( z ) for an arbitrary reproducing kernel.

Bayesian interpretation of regularization

Least squares can be viewed as a likelihood maximization under an assumption of normally distributed residuals. This is because the exponent of the Gaussian distribution is quadratic in the data, and so is the least-squares objective function. In this framework, the regularization terms of RLS can be understood to be encoding priors on w . For instance, Tikhonov regularization corresponds to a normally distributed prior on w that is centered at 0. To see this, first note that the OLS objective is proportional to the log-likelihood function when each sampled y i is normally distributed around w T x i . Then observe that a normal prior on w centered at 0 has a log-probability of the form

log P ( w ) = q α j = 1 d w j 2

where q and α are constants that depend on the variance of the prior and are independent of w . Thus, minimizing the logarithm of the likelihood times the prior is equivalent to minimizing the sum of the OLS loss function and the ridge regression regularization term.

This gives a more intuitive interpretation for why Tikhonov regularization leads to a unique solution to the least-squares problem: there are infinitely many vectors w satisfying the constraints obtained from the data, but since we come to the problem with a prior belief that w is normally distributed around the origin, we will end up choosing a solution with this constraint in mind.

Other regularization methods correspond to different priors. See the list below for more details.

Ridge regression

One particularly common choice for the penalty function R is the squared 2 norm, i.e.,

R ( w ) = j = 1 d w j 2 1 n Y X w 2 2 + λ j = 1 d | w j | 2 min w R d

The most common names for this are called Tikhonov regularization and ridge regression. It admits a closed-form solution for w :

w = ( X T X + α I ) 1 X T Y

The name ridge regression alludes to the fact that the α I term adds positive entries along the diagonal "ridge" of the sample covariance matrix X T X .

When α = 0 , i.e., in the case of ordinary least squares, the condition that d > n causes the sample covariance matrix X T X to not have full rank and so it cannot be inverted to yield a unique solution. This is why there can be an infinitude of solutions to the ordinary least squares problem when d > n . However, when α > 0 , i.e., when ridge regression is used, the addition of α I to the sample covariance matrix ensures that all of its eigenvalues will be strictly greater than 0. In other words, it becomes invertible, and the solution becomes unique.

Compared to ordinary least squares, ridge regression is not unbiased. It accepts little bias to reduce variance and the mean square error, and helps to improve the prediction accuracy. Thus, ridge estimator yields more stable solutions by shrinking coefficients but suffers from the lack of sensitivity to the data.

Lasso regression

The least absolute selection and shrinkage (LASSO) method is another popular choice. In lasso regression, the lasso penalty function R is the 1 norm, i.e.

R ( w ) = j = 1 d | w j | 1 n Y X w 2 2 + λ j = 1 d | w j | min w R d

Note that the lasso penalty function is convex but not strictly convex. Unlike Tikhonov regularization, this scheme does not have a convenient closed-form solution: instead, the solution is typically found using quadratic programming or more general convex optimization methods, as well as by specific algorithms such as the least angle regression algorithm.

An important difference between lasso regression and Tikhonov regularization is that lasso regression forces more entries of w to actually equal 0 than would otherwise. In contrast, while Tikhonov regularization forces entries of w to be small, it does not force more of them to be 0 than would be otherwise. Thus, LASSO regularization is more appropriate than Tikhonov regularization in cases in which we expect the number of non-zero entries of w to be small, and Tikhonov regularization is more appropriate when we expect that entries of w will generally be small but not necessarily zero. Which of these regimes is more relevant depends on the specific data set at hand.

Besides feature selection described above, LASSO has some limitations. Ridge regression provides better accuracy in the case n > d for highly correlated variables. In another case, n < d , LASSO selects at most n variables. Moreover, LASSO tends to select some arbitrary variables from group of highly correlated samples, so there is no grouping effect.

ℓ0 Penalization

1 n Y X w 2 2 + λ w j 0 min w R d

The most extreme way to enforce sparsity is to say that the actual magnitude of the coefficients of w does not matter; rather, the only thing that determines the complexity of w is the number of non-zero entries. This corresponds to setting R ( w ) to be the 0 norm of w . This regularization function, while attractive for the sparsity that it guarantees, is very difficult to solve because doing so requires optimization of a function that is not even weakly convex. Lasso regression is the minimal possible relaxation of 0 penalization that yields a weakly convex optimization problem.

Elastic net

For any non-negative λ 1 and λ 2 the objective has the following form:

1 n Y X w 2 2 + λ 1 j = 1 d | w j | + λ 2 j = 1 d | w j | 2 min w R d

Let α = λ 1 λ 1 + λ 2 , then the solution of the minimization problem is described as:

1 n Y X w 2 2 min w R d s.t. ( 1 α ) w 1 + α w 2 t for some t .

Consider ( 1 α ) w 1 + α w 2 t as an Elastic Net penalty function.

When α = 1 , elastic net becomes ridge regression, whereas α = 0 it becomes Lasso. α ( 0 , 1 ] Elastic Net penalty function doesn't have the first derivative at 0 and it is strictly convex α > 0 taking the properties both lasso and ridge regression.

One of the main properties of the Elastic Net is that it can select groups of correlated variables. The difference between weight vectors of samples x i and x j is given by:

| w i ( λ 1 , λ 2 ) w j ( λ 1 , λ 2 ) | i = 1 n | y i | λ 2 2 ( 1 ρ i j ) , where ρ i j = x i T x j .

If x i and x j are highly correlated ( ρ i j 1 ), the weight vectors are very close. In the case of negatively correlated samples ( ρ i j 1 ) the samples x j can be taken. To summarize, for highly correlated variables the weight vectors tend to be equal up to a sign in the case of negative correlated variables.

Partial list of RLS methods

The following is a list of possible choices of the regularization function R ( ) , along with the name for each one, the corresponding prior if there is a simple one, and ways for computing the solution to the resulting optimization problem.

References

Regularized least squares Wikipedia