• A simple explanation of the Lasso and Least Angle Regression


    http://statweb.stanford.edu/~tibs/lasso.html

    Give a set of input measurements x1, x2 ...xp and an outcome measurement y, the lasso fits a linear model 

    yhat=b0 + b1*x1+ b2*x2 + ... bp*xp 

    The criterion it uses is: 

    Minimize sum( (y-yhat)^2 ) subject to sum[absolute value(bj)] <= s 

    The first sum is taken over observations (cases) in the dataset. The bound "s" is a tuning parameter. When "s" is large enough, the constraint has no effect and the solution is just the usual multiple linear least squares regression of y on x1, x2, ...xp. 

    However when for smaller values of s (s>=0) the solutions are shrunken versions of the least squares estimates. Often, some of the coefficients bj are zero. Choosing "s" is like choosing the number of predictors to use in a regression model, and cross-validation is a good tool for estimating the best value for "s". 


    Computation of the Lasso solutions


    The computation of the lasso solutions is a quadratic programming problem, and can be tackled by standard numerical analysis algorithms. But the least angle regression procedure is a better approach. This algorithm exploits the special structure of the lasso problem, and provides an efficient way to compute the solutions simulataneously for all values of "s". 

    Least angle regression is like a more "democratic" version of forward stepwise regression. Recall how forward stepwise regression works: 


    Forward stepwise regression algorithm:

    • Start with all coefficients bj equal to zero.
    • Find the predictor xj most correlated with y, and add it into the model. Take residuals r= y-yhat.
    • Continue, at each stage adding to the model the predictor most correlated with r.
    • Until: all predictors are in the model

    The least angle regression procedure follows the same general scheme, but doesn't add a predictor fully into the model. The coefficient of that predictor is increased only until that predictor is no longer the one most correlated with the residual r. Then some other competing predictor is invited to "join the club". 


    Least angle regression algorithm:

    • Start with all coefficients bj equal to zero.
    • Find the predictor xj most correlated with y
    • Increase the coefficient bj in the direction of the sign of its correlation with y. Take residuals r=y-yhat along the way. Stop when some other predictor xk has as much correlation with r as xj has.
    • Increase (bj, bk) in their joint least squares direction, until some other predictor xm has as much correlation with the residual r.
    • Continue until: all predictors are in the model

    Surprisingly it can be shown that, with one modification, this procedure gives the entire path of lasso solutions, as s is varied from 0 to infinity. The modification needed is: if a non-zero coefficient hits zero, remove it from the active set of predictors and recompute the joint direction.

  • 相关阅读:
    oracle 数据库安全审计
    oracle 共享服务器监控
    oralce MTS
    配置一个Oracle共享服务器进程环境需要哪两项参数
    python3 小技巧(2)
    python3 操作注册表
    PYC文件简介
    常见HTTP状态(304,200等)
    用Python模拟浏览器操作
    python3下的IE自动化模块PAMIE
  • 原文地址:https://www.cnblogs.com/dreamafar/p/6214786.html
Copyright © 2020-2023  润新知