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 am creating recommendations for a single user with a model that was trained with user features but without user identity features (i.e. have set user_identity_features = False when creating the Dataset class). However, I encountered a shape issue when the method _construct_feature_matrices is called in the predict method. I noticed that the mismatch in shape was caused by this line (Line 851) in the predict method: n_users = user_ids.max() + 1
From what I can understand, user_ids is an array as long as the number of items but every element is the index value of a user (if a single user id is provided). However, shouldn't it be the number of users if user_features is provided?
Thanks ahead.
The text was updated successfully, but these errors were encountered:
Hello,
I am creating recommendations for a single user with a model that was trained with user features but without user identity features (i.e. have set
user_identity_features = False
when creating the Dataset class). However, I encountered a shape issue when the method_construct_feature_matrices
is called in thepredict
method. I noticed that the mismatch in shape was caused by this line (Line 851) in thepredict
method:n_users = user_ids.max() + 1
From what I can understand, user_ids is an array as long as the number of items but every element is the index value of a user (if a single user id is provided). However, shouldn't it be the number of users if user_features is provided?
Thanks ahead.
The text was updated successfully, but these errors were encountered: