문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 datascience.stackexchange
scroll top