Matrix Factorization
-
Matrix FactorizationMLAI/RecommendSystem 2022. 7. 12. 18:58
Introduction Split the matrix into the product of 2 other matrices We call it R hat because it only approximates R - it is our model of R We would like W and U to be very skinny $W(N \times K)$ - users matrix, $U(M \times K)$ - movie matrix K somewhere from 10-50 The scale of matrix R, W, and U Key: $W$ and $U$ should be much smaller than $R$ $R$ is $N \times M$ Generally, we can't store $R$ in ..