参见英文答案 > ImportError: cannot import name np_utils 6个
我正在使用Python 2.7和Jupyter笔记本来做一些基本的机器学习.我正在关注本教程:
http://machinelearningmastery.com/regression-tutorial-keras-deep-learning-library-python/
我只是想从Keras导入不同的东西,所以我可以运行教程.具体来说,我这样做:
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
它在第一次导入时卡住了,给我一个回溯:
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
score
5 from sklearn.model_selection import KFold
/Users/newscred/anaconda/lib/python2.7/site-packages/keras/__init__.py in
我已经用Google搜索了但似乎无法找出为什么我遇到这个问题/如何修复.有任何想法吗?
谢谢!
最佳答案
该教程于2016年6月9日编写.Keras 2于2017年3月发布.尝试使用pip install keras == 1.2.2安装旧版本.
原文链接:https://www.f2er.com/python/438769.html