Hello,
I have successfully run all the code for course 2 week 2 programming assignment all test were passed on(10/2), after submitting it shows grading failed (0/100). Does anyone know how to resolve the issue?
Thank you,
Abdul
Hello,
I have successfully run all the code for course 2 week 2 programming assignment all test were passed on(10/2), after submitting it shows grading failed (0/100). Does anyone know how to resolve the issue?
Thank you,
Abdul
please share the grader feedback via screenshot / text.
Just passing the test cases in the notebook does not mean your code is fully correct. Perhaps you have “hard-coded” the logic in such a way that it is not general: it works for one test case, but not a different one.
But when you get 0 points for everything, it can also mean there is some syntax error somewhere (perhaps not even in the graded code) that causes the grader to fail.
As Balaji says, the first step is to see the actual error message you get from the grader. Please click “Show grader output” and then post a screen shot of what you are getting.
I resolved the issue — I was using mini_batch_size to split the data, while the actual batch size was stored in the variable inc.
Thank you for your help.