I just finished the second assignment of week 2 and all tests are correctly passed . However, I got 66/100 ! The grader mentioned the following :
Code Cell UNQ_C1: Function ‘data_augmenter’ is correct.
Code Cell UNQ_C2: Function ‘alpaca_model’ is correct.
Code Cell UNQ_C3: The value of your variable ‘loss_function’ is correct.
Code Cell UNQ_C3: The value of your variable ‘optimizer’ is correct.
Code Cell UNQ_C3: You have an incorrect value for ‘metrics’ variable. We expected a value of ‘accuracy’ and you have ‘a’.
If you see many functions being marked as incorrect, try to trace back your steps & identify if there is an incorrect function that is being used in other steps.
This dependency may be the cause of the errors.
Note that I identified the accuracy metric as follows:
Use accuracy as evaluation metric
metrics=[‘accuracy’]
Could anyone explain to me why the grader did this output?