简体   繁体   中英

Deep learning theano

I use Theano for developing a convolutional neural network using keras library. when i tried to run my code , i reported the following error:

AssertionError: AbstractConv2d Theano optimization failed: there is no implementation available supporting the requested options. Did you exclude both "conv_dnn" and "conv_gemm" from the optimizer? If on GPU, is cuDNN available and does the GPU support it? If on CPU, do you have a BLAS library installed Theano can link against?

Please I need specific steps to solve the problem. Thanks in advance.

Try adding optimizer = None to your .theanorc file A sample .theanorc file might look like:

[global]
device = gpu
optimizer = None
[cuda]
root = /usr/local/cuda-VERSION

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM