Submission of week3 keep saying invalid model

hello

this course insist on using tensorflow 2.2.0 while in colab we have only 2.8.0
i run the notebook with tensorflow 2.8.0 and afterwards changed the version numbers in the model.json file to 2.2.0 and tensorflow js to 4.4.0 but keep failling submission.
This has nothing to do with deep learning and is now already wasting a week of my time.
If this course is not upgraded i will just cancel my course

It’s extremely complicated to move a project from Coursera Labs to other environments. There are issues with getting compatible versions of all of the packages and tools.

I had the same problem and I could solve it thanks to Seema_Naswa’s comment in another thread.
You have to use conda prompt and run the following commands:

conda create -n tf210 tensorflow=2.1.0 python=3.7
conda activate tf210
pip install tensorflow-intel==0.0.1
pip install tensorflow-cpu==2.1.0
pip install tensorflow-estimator==2.1.0rc0
pip install tensorflow==2.2.0
conda install Pillow
conda install jupyter
jupyter notebook

2 Likes