Question: Please complete the compute _ gradient function to: Iterate over the training examples, and for each example, compute: The prediction of the model for that

Please complete the compute_gradient function to:
Iterate over the training examples, and for each example, compute:
The prediction of the model for that example
fwb(x(i))=wx(i)+b
The gradient for the parameters w,b from that example
delJ(w,b)(delb)(i)=(fw,b(x(i))-y(i))
delJ(w,b)(delw)(i)=(fw,b(x(i))-y(i))x(i)
Return the total gradient update from all the examples
delJ(w,b)delb=1mi=0m-1delJ(w,b)(i)delb
delJ(w,b)delw=1mi=0m-1delJ(w,b)(i)delw
Here, m is the number of training examples and ?? is the summation operator
If you get stuck, you can check out the hints presented after the cell below to help you with the implementation.
 Please complete the compute_gradient function to: Iterate over the training examples,

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!