Running this module using tensorflow 2.0.0 yields an error:
AttributeError: module 'tensorflow' has no attribute 'get_default_graph'
Are there any plans to port the library to tensorflow 2.0.0?
Perhaps all you have to do is change import keras to from tensorflow import keras and perhaps use fully qualified names when using layers...
Running this module using tensorflow 2.0.0 yields an error:
AttributeError: module 'tensorflow' has no attribute 'get_default_graph'Are there any plans to port the library to tensorflow 2.0.0?
Perhaps all you have to do is change
import kerastofrom tensorflow import kerasand perhaps use fully qualified names when using layers...