After submission of the final assignment in Course, the score shows 0/100 even though the all the insides tests passed. The grader output shows the following
[ValidateApp | INFO] Validating ‘/home/jovyan/work/submitted/courseraLearner/W4A2/Deep Neural Network - Application.ipynb’
[ValidateApp | INFO] Executing notebook with kernel: python3
[ValidateApp | ERROR] Timeout waiting for execute reply (30s).
[ValidateApp | ERROR] Interrupting kernel
[ValidateApp | ERROR] Timeout waiting for execute reply (30s).
[ValidateApp | ERROR] Interrupting kernel
Tests failed on 2 cell(s)! These tests could be hidden. Please check your submission.
Hey @VamsiVinay , as instructed before to check for referencing of global variables or hardcoded values, you are doing exactly that.
You are passing a fixed value for the learning rate in the parameters variables for both of Ex 1 and Ex 2. As the value of 0.0075 as learning rate is being used within the assignment unit tests, it throws no error, even when you pass it as a hardcoded value.
But the unit tests for the autograder uses a different value for learning rate, so when you hardcode it to be 0.0075, it fails.