Nitro
Nitro

Reputation: 1293

Scikit-learn RandomizedLasso and RandomizedLogisticRegression Deprecated

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

Answers (1)

sascha
sascha

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

Related Questions