Reputation: 11
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
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