doc/source/examples/machine_learning/lasso_regression.rst
Lasso regression is, like ridge regression, a shrinkage method. It
differs from ridge regression in its choice of penalty: lasso imposes an
:math:\ell_1 penalty on the parameters :math:\beta. That is,
lasso finds an assignment to :math:\beta that minimizes the function
.. math:: f(\beta) = |X\beta - Y|_2^2 + \lambda |\beta|_1,
where :math:\lambda is a hyperparameter and, as usual, :math:X is
the training data and :math:Y the observations. The :math:\ell_1
penalty encourages sparsity in the learned parameters, and, as we
will see, can drive many coefficients to zero. In this sense, lasso is a
continuous feature selection method.
In this notebook, we show how to fit a lasso model using CVXPY, how to
evaluate the model, and how to tune the hyperparameter :math:\lambda.
.. code:: python
import cvxpy as cp
import numpy as np
import matplotlib.pyplot as plt
Writing the objective function
We can decompose the **objective function** as the sum of a **least
squares loss function** and an :math:`\ell_1` **regularizer**.
.. code:: python
def loss_fn(X, Y, beta):
return cp.norm2(X @ beta - Y)**2
def regularizer(beta):
return cp.norm1(beta)
def objective_fn(X, Y, beta, lambd):
return loss_fn(X, Y, beta) + lambd * regularizer(beta)
def mse(X, Y, beta):
return (1.0 / X.shape[0]) * loss_fn(X, Y, beta).value
Generating data
~~~~~~~~~~~~~~~
We generate training examples and observations that are linearly
related; we make the relationship *sparse*, and we’ll see how lasso will
approximately recover it.
.. code:: python
def generate_data(m=100, n=20, sigma=5, density=0.2):
"Generates data matrix X and observations Y."
np.random.seed(1)
beta_star = np.random.randn(n)
idxs = np.random.choice(range(n), int((1-density)*n), replace=False)
for idx in idxs:
beta_star[idx] = 0
X = np.random.randn(m,n)
Y = X.dot(beta_star) + np.random.normal(0, sigma, size=m)
return X, Y, beta_star
m = 100
n = 20
sigma = 5
density = 0.2
X, Y, _ = generate_data(m, n, sigma)
X_train = X[:50, :]
Y_train = Y[:50]
X_test = X[50:, :]
Y_test = Y[50:]
Fitting the model
~~~~~~~~~~~~~~~~~
All we need to do to fit the model is create a CVXPY problem where the
objective is to minimize the objective function defined above. We
make :math:`\lambda` a CVXPY parameter, so that we can use a single
CVXPY problem to obtain estimates for many values of :math:`\lambda`.
.. code:: python
beta = cp.Variable(n)
lambd = cp.Parameter(nonneg=True)
problem = cp.Problem(cp.Minimize(objective_fn(X_train, Y_train, beta, lambd)))
lambd_values = np.logspace(-2, 3, 50)
train_errors = []
test_errors = []
beta_values = []
for v in lambd_values:
lambd.value = v
problem.solve()
train_errors.append(mse(X_train, Y_train, beta))
test_errors.append(mse(X_test, Y_test, beta))
beta_values.append(beta.value)
Evaluating the model
~~~~~~~~~~~~~~~~~~~~
Just as we saw for ridge regression, regularization improves
generalizability.
.. code:: python
%matplotlib inline
%config InlineBackend.figure_format = 'svg'
def plot_train_test_errors(train_errors, test_errors, lambd_values):
plt.plot(lambd_values, train_errors, label="Train error")
plt.plot(lambd_values, test_errors, label="Test error")
plt.xscale("log")
plt.legend(loc="upper left")
plt.xlabel(r"$\lambda$", fontsize=16)
plt.title("Mean Squared Error (MSE)")
plt.show()
plot_train_test_errors(train_errors, test_errors, lambd_values)
.. image:: lasso_regression_files/lasso_regression_9_0.svg
Regularization path and feature selection
As :math:\lambda increases, the parameters are driven to :math:0. By
:math:\lambda \approx 10, approximately 80 percent of the coefficients
are exactly zero. This parallels the fact that :math:\beta^* was
generated such that 80 percent of its entries were zero. The features
corresponding to the slowest decaying coefficients can be interpreted as
the most important ones.
Qualitatively, lasso differs from ridge in that the former often drives parameters to exactly zero, whereas the latter shrinks parameters but does not usually zero them out. That is, lasso results in sparse models; ridge (usually) does not.
.. code:: python
def plot_regularization_path(lambd_values, beta_values):
num_coeffs = len(beta_values[0])
for i in range(num_coeffs):
plt.plot(lambd_values, [wi[i] for wi in beta_values])
plt.xlabel(r"$\lambda$", fontsize=16)
plt.xscale("log")
plt.title("Regularization Path")
plt.show()
plot_regularization_path(lambd_values, beta_values)
.. image:: lasso_regression_files/lasso_regression_11_0.svg