keras examples doesn't work

后端 未结 3 875
借酒劲吻你
借酒劲吻你 2021-01-06 14:32

I am trying to study Keras library and I tried to run this example from https://github.com/fchollet/keras/tree/master/examples

\'\'\'Trains a simple deep NN          


        
3条回答
  •  长发绾君心
    2021-01-06 14:55

    The error clearly says that it cannot find g++.exe. Theano requires a C++ compiler to generate and compile C++ code in order to accelerate execution of the code, but seems you don't have such compiler.

    So either install g++ (maybe from a MinGW install) and configure the paths to the g++.exe binary in theano's configuration or disable theano's C++ code generator in the configuration.

提交回复
热议问题