-
Notifications
You must be signed in to change notification settings - Fork 413
Description
Dear all,
Hoping to get some insight into feature design here and check my understanding is correct, as I am new to FMs.
In the original Factorization Machines paper in 2010, the "Other Movies Rated" feature contains normalised values for all the other movies the user has ever rated.
Let's use the user Alice in the example, and assume the example covers the training set. We see she's rated 3 movies: NH, TI, and SW. Since there are 3 movies, the "Other Movies Rated" columns have values of (0.3, 0.3, 0.3, 0...).
Say in my test set, Alice has rated ST (Star Trek) with a target of 1. In my "Other Movies Rated" columns in the test set, should I use (0.25, 0.25, 0.25, 0.25 ...), with the fourth value updated for Alice's rating of ST? Or should I use (0.3, 0.3, 0.3, 0...), similar to the training set?
Thanks in advance! Apologies if this question has been asked elsewhere, I haven't been able to find a conclusive answer.