In Table 5 normalized house price is provided. A machine learning algorithm is trained on the House size for predicting the House price. The predicted price can be expressed by the equation $Yp=a+bX$. The sum of squared error $(SSE)$ can be expressed with the formula
$SSE=\frac{1}{2} (actual \ house \ price- predicted\ house \ price)^{2} = \frac{1}{2}(Y-Yp)^{2}$
Calculate the error gradient $\frac{d}{db} SSE$
Wouldnt this just result in $2(Y - Yp)/2$
$\frac{d}{db} SSE = Y - (a + bx)$ ?
We get the value $a = 0.45$ from the table which makes $b = 0.77$
Feels like I am missing something I dont know if I am doing the calculation the way the question wants me.
