Announcement
-
HW4 (due 6/12) and HW5 (due 6/15) are posted.
-
Sign-up sheet.
Today
-
Newton and Fisher scoring algorithm (cont’d).
-
HW2 feedback.
-
NNMF: Multiplication order matters:
V * W * W'vsV * (W * W'). Avoid matrix transpose in loop:W * WvsA_mul_Bt(W, W). Avoid allocating arrays in loop:A_mul_Bt(W, W)vsA_mul_Bt!(storage, W, W). -
LMM:
easy + low rankstructure.
-
-
HW3 feedback:
-
Big $n$ regression: although
X, ymay be too large to fit into memory, sufficient statisticsX'XandX'yhas fixed size. -
PageRank:
easy + low rankstructure. Make sure to use this structure in iterative algorithms.
-