I have passed all the previous tests but in exercise 8 I have an error regarding a previous exercise:
ValueError: shapes (1,4) and (2,3) not aligned: 4 (dim 1) != 2 (dim 0)
I think there is an error when I did np.dot in some previous exercise, but i have passed them all.
Thank you.
If your previous functions passed their tests, they can still throw errors if you pass them bad arguments. So the place to look for the bug is in your model
code. Are you referencing global variables there for example?
3 Likes
That was the mistake. Already solved! Thank you very much
1 Like