Hello , can someone help me ? ModuleNotFoundError: No module named ‘keras.engine’ This is the message I received anaytime. in colab in pycharm . I try to make a model by training , I use few github mask rcnn and no way. I tried different Tensorflow & tensorflow2 and and… Someone have an idea ??? Thanks a lot
Hi @Leo_Verheyden, There is no module keras.engine. From tensorflow 2.x onwords all of the sub modules under the keras.engine are under different modules within the tf.keras. You can import keras using import keras
directly or from tensorflow import keras
. Thank You.