简体   繁体   中英

Cannot import anything from sklearn.ensemble

from sklearn.ensemble._forest import VotingClassifier
from sklearn.ensemble import RandomForestRegressor

when I try to import anything from ensemble, there's always error like:

追溯

I tried

pip install -U scikit-learn
conda install -c conda-forge scikit-learn 

Don't mix conda with pip.

Try these steps:

  1. pip uninstall sklearn and then pip install -U scikit-learn

  2. Replace

    from sklearn.ensemble._forest import VotingClassifier

    with

    from sklearn.ensemble import VotingClassifier

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM