In the course “Natural Language Processing with Classification and Vector Spaces” on submitting assignment “Programming Assignment: Assignment: Vector Space Models” encountering the error “There was a problem grading your submission. Check stderr for more details.”
Not able to proceed with the course.
1 Like
You have posted in the “General Feedback about out community” area.
If you want help about a specific course, you should use the “pencil” icon in the thread title, to move your post to the forum for that course.
1 Like
99% of the time when you pass the unit tests (and all your outputs match the expected outputs) but grading of the assignment fails, it is one of those reasons:
Important Note on Submission to the AutoGrader
Before submitting your assignment to the AutoGrader, please make sure you are not doing the following:
- You have not added any extra
- You have not added any extra code cell(s) in the assignment.
- You have not changed any of the function parameters.
- You are not using any global variables inside your graded exercises. Unless specifically instructed to do so, please refrain from it and use the local variables instead.
- You are not changing the assignment code where it is not required, like creating extra variables.
80% of these are:
- You are not using any global variables inside your graded exercises. Unless specifically instructed to do so, please refrain from it and use the local variables instead.
For example, if you have local variable (function parameter) named embeddings
then do not use global variable named word_embeddings
.
Cheers
1 Like
Thank you, it worked.
1 Like