D2L Discussion
Linear Regression
English Version
pytorch
mli
May 27, 2020, 9:14pm
1
http://d2l.ai/chapter_linear-networks/linear-regression.html
StevenJokes
June 12, 2020, 8:08am
2
b = mean(x), when derivative of ∑i(xi−b)2 equals 0,.
MLE (maximum likelihood estimation).
When each parameter’s partial derivative of lnL equals 0, we can get the optimal value.
概率论与数理统计.浙大第四版 P154
3-1
864×716 65.4 KB
y=mean(W_T*X)+b, W_T,X:matrix, *:matrix multiply
2.TODO:
3.TODO: