我正在尝试 运行 autoencoder_layers.py 在 gpu 上使用 keras 但我收到此错误

I am trying to run autoencoder_layers.py using keras on gpu but i get this error

autoencoder_layers.py github code

import theano
from keras import backend as K
from keras.backend.theano_backend import _on_gpu
from keras.layers.convolutional import Convolution2D, UpSampling2D
from keras.layers.core import Dense, Layer
from theano import tensor as T
from theano.sandbox.cuda import dnn

但我收到此错误:

 /home/hoda/anaconda2/bin/python /home/hoda/Downloads/keras-convautoencoder-master/autoencoder_layers.py
Using gpu device 0: GeForce GTX 970M (CNMeM is disabled, cuDNN not available)
Using Theano backend.
Traceback (most recent call last):
  File "/home/hoda/Downloads/keras-convautoencoder-master/autoencoder_layers.py", line 3, in <module>
    from keras.backend.theano_backend import _on_gpu
ImportError: cannot import name _on_gpu

我该如何解决?

注释行 from keras.backend.theano_backend import _on_gpu 并将 _on_gpu 定义为:

def _on_gpu():
    return theano.config.device[:3] == 'gpu'

它将修复您的错误。