tensorflow-deep-learning
tensorflow-deep-learning copied to clipboard
Notebook 07: (07_food_vision_milestone_project_1.ipynb): mixed precision training time taking far too long
Notebook link: https://github.com/mrdbourke/tensorflow-deep-learning/blob/main/07_food_vision_milestone_project_1.ipynb
See the issue here:
Potential fixes:
- Install TensorFlow 2.8.1 or 2.11, see: https://github.com/mrdbourke/tensorflow-deep-learning/issues/494#issuecomment-1399574736
Run the following in a Google Colab cell (you may have to restart your runtime):
# Install TensorFlow 2.11
!pip uninstall tensorflow
!pip install tensorflow==2.11
# Install TensorFlow 2.8.1
!pip uninstall tensorFlow
!pip install tensorflow==2.8.1
but on using any of these versions gives error for tensorflow_datasets and protobuf. @mrdbourke