LassoCV

时间:2019-06-16 06:30:56

标签: python scikit-learn lasso

我正在使用LassoCV建立模型。我注意到该代码自动设置了alpha(Friedman,Hastie和Tibshirani(2010)中的lambda)。范围计算代码基本上与本文中的lambda计算相同。但是,它返回log10(alpha_max)。我不明白为什么代码使用log10。它大大减小了alpha的范围。

 return np.logspace(np.log10(alpha_max * eps), np.log10(alpha_max),
                       num=n_alphas)[::-1]

0 个答案:

没有答案