Matrix Factorization
December 19, 2022•620 words
Matrix Factorization
set unknown/missing number to zero
Matrix factorization follows the following:
Initialize two random matrices a and b with dimensions m by j and j by n such that when multiplied, their dimension matches the original matrix z (that has dimensions m by n).
Multiply a by b to achieve an estimate for z.
Subtract z from y for the known values of z, or some other loss function, to evaluate how far off the estimate is from the real matrix.
Use gradient descent formulas to adj...
Read post