Refactor linear model coordinate descent code to work as LARS for cv#2186
Refactor linear model coordinate descent code to work as LARS for cv#2186agramfort wants to merge 3 commits intoscikit-learn:masterfrom
Conversation
|
i'll look at this when i'm home a bit too. 2013/7/22, Alexandre Gramfort notifications@github.com:
|
|
@fabianp spotted a bug with precompute. |
There was a problem hiding this comment.
Could you point me to where the decision to deprecate has been made? Can we also deprecate normalize in orthogonal matching pursuit? The code is on the point of unmaintainability because of branching in case of normalization and copy_X, copy_Gram, copy_Xy interaction.
There was a problem hiding this comment.
Could you point me to where the decision to deprecate has been made?
search for :
- if normalize is not None:
-
warnings.warn("normalize param will be removed in 0.15." -
" Intercept fitting and feature normalization will be" -
" done in estimators.", -
DeprecationWarning, stacklevel=2)
Can
we also deprecate normalize in orthogonal matching pursuit? The code is on
the point of unmaintainability because of branching in case of normalization
and copy_X, copy_Gram, copy_Xy interaction.
Yes I think it's the most reasonable option. Indeed all these options make
it a nightmare to maintain.
|
cleanup, rebased, ready for review ! warning the diff is horrible as many functions have moved. It's a big refactoring. |
|
travis is happy ! |
|
Merged by rebase |
there is a million dollar bug cf. plot_model_lasso_model_selection.py
tests pass but the example output is wrong...