Machine-Learning-Specialization-Coursera
Machine-Learning-Specialization-Coursera copied to clipboard
Notation Tables are messed up, c1w2.
in the optional labs 02 and 03 of week2 of course1, there is a notation table, the markdown looked messed up ( took the screen shots in the jupyter lab using brave browser ):
lab02 :
lab03 :
i used the github WEB UI editor, as a refrence and fixed the table.
Let me now if i can submit a pull req. thanks.
Also, for the 3rd last codeblock, where it states
w = w - alpha * dj_dw
shouldn't this be
w = w - np.dot(alpha,dj_dw)
? Otherwise, it tries to multiply a float with a list
Resolved in PR #31