我在我的 Win64 系统中安装了 WinPython 和 Keras 0.1.2,然后我开始运行 Keras 源代码中提供的示例,但是出现了很多错误让我很沮丧 - -!
有人帮助我,感谢任何提示。
我尝试运行“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'