作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试通过 Python 中的 Keras 深度学习库学习神经网络。我正在使用 Python 3 并引用此链接:Tutorial Link
我尝试运行下面的代码,但出现以下错误:
导入错误:没有名为“sklearn.model_selection”的模块
import numpy
import pandas
from keras.models import Sequential
from keras.layers import Dense
from keras.wrappers.scikit_learn import KerasRegressor
from sklearn.model_selection import cross_val_score
from sklearn.model_selection import KFold
from sklearn.preprocessing import StandardScaler
from sklearn.pipeline import Pipeline
非常感谢任何帮助!
最佳答案
我认为你安装了错误版本的 sklearn。
请试试这个:
导入sklearn
打印(sklearn.__version__)
0.17.1
如果您的版本低于 0.18,请使用 pip install -U scikit-learn
或 pip3 install -U scikit-learn
进行更新
如果您有导入错误
,请使用pip install scikit-learn
或pip3 install scikit-learn
安装sklearn
关于 python 3 : No module named 'sklearn.model_selection' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43600350/
我是一名优秀的程序员,十分优秀!