Goh Jet Wei
Results
1
issues of
Goh Jet Wei
In the '8_sgd_vs_gd' folder, the 'gd_and_sgd.ipynb' file, there is a logic flaw in the Stochastic Gradient Descent code, This line of code: ```python w_grad = -(2/total_samples)*(sample_x.T.dot(sample_y-y_predicted)) b_grad = -(2/total_samples)*(sample_y-y_predicted) ```...