Performing the following:
from keras import backend as K
sess = tf.Session()
K.set_session(sess)
Even though I've imported Keras and TensorFlow correctly, I get the following:
module 'keras.backend' has no attribute 'set_session'
Any help would be appreciated!
I think you need this :
Use it like this :
Works fine for me