- Advanced Machine Learning with R
- Cory Lesmeister Dr. Sunil Kumar Chinnamgari
- 240字
- 2021-06-24 14:24:39
LASSO
LASSO applies the L1-norm instead of the L2-norm as in ridge regression, which is the sum of the absolute value of the feature weights and so minimizes RSS + λ(sum |Bj|). This shrinkage penalty will indeed force a feature weight to zero. This is a clear advantage over ridge regression, as it may improve the model interpretability.
The mathematics behind the reason that the L1-norm allows the weights/coefficients to become zero is beyond the scope of this book (refer to Tibsharini, 1996 for further details).
If LASSO is so great, then ridge regression must be obsolete in machine learning. Not so fast! In a situation of high collinearity or high pairwise correlations, LASSO may force a predictive feature to zero, hence you can lose the predictive ability; that is, if both feature A and B should be in your model, LASSO may shrink one of their coefficients to zero. The following quote sums up this issue nicely:
There is the possibility of achieving the best of both worlds and that leads us to the next topic, elastic net.
- Arduino入門基礎教程
- Linux KVM虛擬化架構實戰指南
- Manage Partitions with GParted How-to
- 計算機組裝與維修技術
- OUYA Game Development by Example
- Creating Flat Design Websites
- Hands-On Artificial Intelligence for Banking
- 深入理解序列化與反序列化
- Internet of Things Projects with ESP32
- Hands-On Motion Graphics with Adobe After Effects CC
- 單片微機原理及應用
- 單片機項目設計教程
- FPGA實驗實訓教程
- Istio實戰指南
- The Reinforcement Learning Workshop