Which Tensorflow Package For Keras 2.3
I am trying to use Keras on my machine but I keep getting the error message 'AttributeError: module 'tensorflow.python.keras.backend' has no attribute 'get_graph''. Stack Trace i
Solution 1:
I couldn't reproduce the error you observe with Keras 2.3.0 & tensorflow 2.0.0rc1. Although, I was able to start the training of acgan, I got a different error after one iteration: Resource localhost/_AnonymousVar84/N10tensorflow3VarE does not exist
.
I could successfully run the example with the following versions:
- Keras 2.2.4/tensorflow 1.14.0
- tensorflow 2.0.0rc1 and replace
keras
withtensorflow.keras
in the imports.
Post a Comment for "Which Tensorflow Package For Keras 2.3"