C1M3 (Programming Assignment: Building a Robust Data Pipeline)

All the test cases are passing but I score 66% when I submit. What could be the issue?

Hi @hassanql,

Please re-submit your assignment. Sometimes there can be a glitch in the system, and your next submission or the one after (to be sure) should give you full score if you are passing all of the tests.

If even after re-submitting a couple of times, you are still not able to get the full score, please reply to this thread and tag me. I’ll be happy to help you out.

Best,
Mubsi

Is there any detailed feedback from the grader?

I’ve tried to resubmit 3 times and I’m still getting the same grade.

Here’s the detailed feedback for your reference @TMosh @Mubsi

Just a suggestion:

If “df_labels” is a global variable in the Jupyter Lab environment, then it may not be available in the grader’s environment.

Check if you’re using “df_labels” incorrectly.

@TMosh Thanks for the tip. It appears I was referencing a global variable when I needed to use the instance attribute defined within the method’s local scope

Nice work!