Question 1
Gradient descent is an algorithm for finding values of parameters w and b that minimize the cost function J:

When is a negative number (less than zero), what happens to w after one update step?
wincreases.wdecreases- It is not possible to tell if
wwill increase or decrease. wstays the same
Answer
w increases
The learning rate is always a positive number, so if you take W minus a negative number, you end up with a new value for W that is larger (more positive).
Question 2
For linear regression, what is the update step for parameter b?
Answer
the first option is the update step for parameter w, and should be `w = w - alpha…’