I’m trying to do the first assignment, C2_W1_Assignment and I’m running into a problem. For the first exercise, my code passes the tests within the Jupyter notebook. However, it fails in the grader with “Failed test case: model does not have 3 layers. Expected: 3, but got: 0.” The code which I’m currently using is identical to that in the hints. (I originally had some very similar code which a named/ keyword argument more like what is in the lecture notes e.g. the first layer had ‘Dense(units=25, activation=“sigmoid”)’; but I changed to what is in the hint in case the grader is very picky and prefers a specific implementation.). After a couple of attempts, I tried doing Kernel → “Restart and run all” and then submitting right after; but then it failed again. (Also, tried doing a “save and checkpoint”, then “restart and run all” and then submitting - still fails.)
Exercise 2 is also failing in the grader (while it passes the tests in the Jupyter notebook); but I expect that something is not working - either in my code when graded or in the grader itself - such that the model is not set up properly when exercise 2 is graded,
William

