0
I am using the following Tensor flow tutorial from Google on building a collaborative filter based recommendation model.
I want to use the model in the following way
- A model is trained on the movie lens dataset using the tutorial.
- Model is used to power a move recommendation service
- A new user joins the service and gives ratings on 10 movies from the dataset.
How do I use the model to get predictions on the top 5 movie recommendations for this user based on the already trained model. I want to do this without training a new model that incorporates the user information.
Any pointers on how to do this will be greatly appreciated.