3

我在我的 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'

Keras 错误

4

2 回答 2

2

The examples http://keras.io/examples/ have not been updated after the recent API changes https://groups.google.com/forum/#!topic/keras-users/iWVrWpR_eaQ.

Make sure you have the latest version of Keras installed with:

sudo pip install git+git://github.com/fchollet/keras.git --upgrade

and use updated examples from the same repository https://github.com/fchollet/keras/tree/master/examples

于 2015-10-08T14:51:15.770 回答
0

截至 11 月 19 日,最新版本的 Keras 0.2.0 不是你要做pip install的。您需要从https://pypi.python.org/pypi/Keras下载它。解压文件后,运行python setup.py install

于 2015-11-18T20:14:50.397 回答