Models suitable for changing context #2152
Unanswered
Joe-W-Davies
asked this question in
Q&A
Replies: 1 comment
-
I understand that factorization machines should be able to do the job, but I still haven't used them |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
For the neural network based models in this repository, it seems like adding context is only possible when the contextual feature is static. For example in the MovieLens dataset, the Wide and Deep example notebook only considers "genre" of the item as an additional context feature. This item feature is the same for every user-item pair, given that the movie genre doesn't change.
I'm interested in the case where we have dynamic context features that change for each user-item interaction. For example, the age of the movie in days would be a dynamic feature, because it will be likely different for each user-item pair. The day of the week the interaction occurs on is another example.
I'm aware Boosted Tree models can incorporate these kind of features, but in my experience they are poorer at handling the user and item IDs; hence why I want to use a NN-based approach, with better embeddings for IDs.
Are there any models suitable for this application in the repo?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions