tensorflow / tensorflow/recommenders
Giving recommendations to new user based on model's current status.
@maciejkula is already working on this.
Since Jun 1, 2021.
- Dominant language
- Python
- Stars
- 2k
- Forks
- 300
- PR merge metrics
- No merged PRs in 30d
Description
Every tutorial I looked into gives recommendations based on users in the dataset. What if a new one appears? Lets say it is a case where user AA (model during training took data from users A->Z) made some searches/ratings (similarly we can build the Dataframe with user_id, movie_title, user_rating, etc).
If an unknown user is simply entered into the model then (obviously) the model won't be of much use. What I've been thinking is to take in the additional information and using whatever we have at the moment find the most similar user (typical CF) and make the initial query based off that one.
Is there any way to implement this? I'd like to pass the mini-dataframe (with the new user's ratings) as an input of sorts but I am not exactly certain how I should handle it afterwards. How can I add this additional information to my model?
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.