1

由于错误 ImportError: cannot import name 'lobpcg' from 'sklearn.utils.fixes' (E:\Installations\lib\site-packages\sklearn\utils\fixes.py),无法导入 SMOTE

当我尝试导入以下包时显示上述错误

from imblearn.combine          import SMOTETomek

from imblearn                  import under_sampling, over_sampling

from imblearn.over_sampling    import SMOTE

I have conda installed sklearn, imbllearn. Can some one help me to resolve this error
4

1 回答 1

1

这是在 scikit-learn 中引发的错误。

请务必使用以下命令安装这两个库:

conda install scikit-learn -c conda-forge 
conda install imbalanced-learn -c conda-forge

请注意,我正在使用该conda-forge频道安装 scikit-learn 来获取版本,因为目前默认频道0.22上没有最新版本。conda

于 2019-12-16T16:14:01.183 回答