python – Keras:无法导入名称np_utils

前端之家收集整理的这篇文章主要介绍了python – Keras:无法导入名称np_utils前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > 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

猜你在找的Python相关文章