wil dan
wil dan

Reputation: 11

ImportError: cannot import name 'RandomizedLogisticRegression'

I am trying to import

from sklearn.linear_model import RandomizedLogisticRegression

but in return I get the following error:

ImportError: cannot import name 'RandomizedLogisticRegression'

Upvotes: 1

Views: 3452

Answers (1)

Brad Solomon
Brad Solomon

Reputation: 40888

linear_model.RandomizedLogisticRegression and linear_model.RandomizedLasso were deprecated in scikit-learn 0.19 and removed in 0.21. See the release notes and related issue.

Upvotes: 1

Related Questions