Reputation: 1293
I noticed that linear_model.RandomizedLasso
and linear_model.RandomizedLogisticRegression
which implement stability selection for lasso regression have been deprecated. Does anyone know why? Is stability selection not a sound method?
Upvotes: 3
Views: 3202
Reputation: 33532
Scikit-learn is developed as open-source and with high standards. This means, that most decisions are transparent.
So you can check out their repo @ github and with some search you will find:
Upvotes: 3