We Are Going To Discuss About ModuleNotFoundError: No module named ‘tensorflow.python.keras.applications’. So lets Start this Python Article.
ModuleNotFoundError: No module named ‘tensorflow.python.keras.applications’
- How to solve ModuleNotFoundError: No module named 'tensorflow.python.keras.applications'
my solution was downgrade tensorflow to 2.7
!pip uninstall tensorflow
!pip install tensorflow==2.7 - ModuleNotFoundError: No module named 'tensorflow.python.keras.applications'
my solution was downgrade tensorflow to 2.7
!pip uninstall tensorflow
!pip install tensorflow==2.7
Solution 1
my solution was downgrade tensorflow to 2.7
!pip uninstall tensorflow
!pip install tensorflow==2.7
Original Author matias montagna Of This Content
Solution 2
Try using import keras.applications
instead of import tensorflow.python.keras.applications
Original Author Carlos Gómez Of This Content
Solution 3
No need to downgrade or uninstall tensorflow. The resolution of this error resides in resnet_v1.py file i changed the foll line:
from tensorflow.python.keras.applications import resnet
to
from tensorflow.keras.applications import resnet
and it got resolved because tensorflow.python is deprecated long time ago.
Original Author nirmal Of This Content
Solution 4
I was able to fix the problem by uninstalling TensorFlow and installing it back.
pip uninstall tensorflow
pip install tensorflow
Original Author nirmal Of This Content
Conclusion
So This is all About This Tutorial. Hope This Tutorial Helped You. Thank You.