...
LASSO Regression
Apply regularization with LASSO regression.
While ridge regularization uses an L2 norm penalty term, another regularization method called LASSO uses an L1 norm for the weights penalty term. Specifically, LASSO regularization will find the optimal weights to minimize the following quantity:
α∣∣w∣∣1+∑i=1n(xi⋅w−yi)2\alpha ||w||_1 + \sum_{i = 1}^n (\mathbf{x}_i \cdot w - y_i)^2 ...