You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran wals and got 2 output files, one is the user matrix and other is the item matrix.
My question is, is there some tool that can multiply the two matrices together to get the final user-item matrix, which can be used to get recommendations for each user?
I have the following 2 factor files as the output of wals
For each user, item recommendations are sorted by their scores
If I have the output above, I can recommend item3, item1, item5 to user1 and item9, item2 item8 to user2, etc.
Is there a tool to do this or I have to write something to multiply the 2 matrices and do filtering/sorting myself?
Thanks,
Eddie
The text was updated successfully, but these errors were encountered:
Hi Eddie,
We did not initially plan to provide this functionality in the library, that said it should indeed be easy to just do a matrix multiply in numpy/pandas/other if your dataset is not too big (or just for few users at a time).
Hi Alberto,
Thank you for the clarification. Our dataset is big, so I will use/write something else to process it.
qmf is a good tool. Thanks again for your contribution.
I ran wals and got 2 output files, one is the user matrix and other is the item matrix.
My question is, is there some tool that can multiply the two matrices together to get the final user-item matrix, which can be used to get recommendations for each user?
I have the following 2 factor files as the output of wals
What I want is something like this
For each user, item recommendations are sorted by their scores
If I have the output above, I can recommend item3, item1, item5 to user1 and item9, item2 item8 to user2, etc.
Is there a tool to do this or I have to write something to multiply the 2 matrices and do filtering/sorting myself?
Thanks,
Eddie
The text was updated successfully, but these errors were encountered: