我在Win64系统中安装了WinPython和Keras 0.1.2,然后我开始运行Keras源代码floder中提供的示例,但发生了很多错误让我感到沮丧 - - !
有人帮助我,谢谢你的任何提示。
我尝试运行' mnist_mlp.py',但在线路中发生错误:
model.add(Dense(128, input_shape=(784,)))
TypeError:__init__() got an unexpected keyword argument 'input_shape'
然后我在http://keras.io/examples/上找到了示例 当我跑到下面的那一行时,我仍然遇到了一些错误。
model.add(Dense(20, 64, init='uniform'))
TypeError:__init__() got multiple values for keyword argument 'init'
答案 0 :(得分:2)
最近的API更改http://keras.io/examples/后,示例https://groups.google.com/forum/#!topic/keras-users/iWVrWpR_eaQ尚未更新。
确保安装了最新版本的Keras:
sudo pip install git+git://github.com/fchollet/keras.git --upgrade
并使用来自同一存储库https://github.com/fchollet/keras/tree/master/examples
的更新示例答案 1 :(得分:0)
截至11月19日,Keras 0.2.0的最新版本不是您所做的pip install
。您需要从https://pypi.python.org/pypi/Keras下载它。解压缩文件后,运行python setup.py install