You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In chapter 6, Creating a matrix or two in python topic there is a typo
The mistake: error = (goal_prediction - prediction) ** 2
what it should be: error = (prediction - goal_prediction) ** 2
we can't see any difference in output because mean squared error is used.
Learning the whole Dataset! topic also has the same mistake
The text was updated successfully, but these errors were encountered:
In chapter 6, Creating a matrix or two in python topic there is a typo
The mistake:
error = (goal_prediction - prediction) ** 2
what it should be:
error = (prediction - goal_prediction) ** 2
we can't see any difference in output because mean squared error is used.
Learning the whole Dataset! topic also has the same mistake
The text was updated successfully, but these errors were encountered: