Question

I am trying to predict on my test set and I get the following error

AttributeError: 'Functional' object has no attribute 'uses_learning_phase'

The model is created from the Class Model imported from from keras.engine import Module All the module I imported are from tensorflow.keras except for the package mentioned above. I also tried Importing everything from Keras alone but I still get the same error !

I have tensroflow 2.0 and keras 2.4.3

Was it helpful?

Solution

Could you please share some snippets of your code where the error arises? Generally attribute errors are caused when documentations are updated and that specific attribute is no longer present for the version! Importing new libraries (which you have tried already) or lowering the library version can help but for a definitive answer the code snippet is required!

P.S Sorry for posting this as an answer, I can't comment yet haha.

Licensed under: CC-BY-SA with attribution
Not affiliated with datascience.stackexchange
scroll top