python - 导入 scikit-learn 模块时出错

标签 python scikit-learn

我正在尝试从集群模块调用一个函数,如下所示:

import sklearn
db = sklearn.cluster.DBSCAN()

我收到以下错误:

AttributeError: 'module' object has no attribute 'cluster'

在 IPython 中完成制表符,我似乎可以访问 base、clone、externals、re、setup_module、sys 和 warning 模块。没有别的,虽然其他(包括集群)在 sklearn 目录中。

遵循以下 pbu 的建议并使用

from sklearn import cluster

我明白了:

Traceback (most recent call last):
  File "test.py", line 2, in <module>
    from sklearn import cluster
  File "C:\Python34\lib\site-packages\sklearn\cluster\__init__.py", line 6, in <module>
    from .spectral import spectral_clustering, SpectralClustering
  File "C:\Python34\lib\site-packages\sklearn\cluster\spectral.py", line 13, in <module>
    from ..utils import check_random_state, as_float_array
  File "C:\Python34\lib\site-packages\sklearn\utils\__init__.py", line 16, in <module>
    from .class_weight import compute_class_weight, compute_sample_weight
  File "C:\Python34\lib\site-packages\sklearn\utils\class_weight.py", line 7, in <module>
    from ..utils.fixes import in1d
  File "C:\Python34\lib\site-packages\sklearn\utils\fixes.py", line 318, in <module>
    from scipy.sparse.linalg import lsqr as sparse_lsqr
  File "C:\Python34\lib\site-packages\scipy\sparse\linalg\__init__.py", line 109, in <module>
    from .isolve import *
  File "C:\Python34\lib\site-packages\scipy\sparse\linalg\isolve\__init__.py", line 6, in <module>
    from .iterative import *
  File "C:\Python34\lib\site-packages\scipy\sparse\linalg\isolve\iterative.py", line 7, in <module>
    from . import _iterative
ImportError: DLL load failed: The specified module could not be found.

我在 Windows 上使用 Python 3.4,scikit-learn 0.16.1。

最佳答案

你可能不使用 Numpy+MKL,而只使用 Numpy。

我遇到了同样的问题并用 MKL 重新安装了 Numpy

pip install --upgrade --force-reinstall "numpy‑1.16.3+mkl‑cp37‑cp37m‑win32.whl"

修复它。

注意:将文件更新到最新版本,可能是 64 位 - 见 the list of available Windows binaries

关于python - 导入 scikit-learn 模块时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30766274/

相关文章:

python - 获取 TruncatedSVD.transform() 返回 float16 而不是 float64

python - 加速 sklearn 中的矢量化

python - 不应用所选参数的随机搜索 CV

python - 元组比 Python 中的列表更有效吗?

c# - 可以从 IronPython 使用 scikit 学习吗?

Python sha512 安全

python - 单击图像链接 - Selenium/Python

python - 用 Python 解释决策树

python - 在 structlog 中设置渲染器树

python - 为什么我无法使用 Selenium 打开 google.com?