-
Notifications
You must be signed in to change notification settings - Fork 3
Recommendation Engine
Aditi edited this page Jun 11, 2019
·
6 revisions
- The Recommendation Engine for this project was trained using SVD algorithm in Scikit-Surprise.
-
RecommendationEnginestores trained model in form of pickle file, which can be stored in database.The pickle file can be used to make predictions for a new user.
**1. ImportRecommendationEngine and create an instance of the class. Use the instance to train SVD model and generate top n recommendations for new and existing users.
model = RecommendationEngine()
model.train_svd()
model.get_top_n(10)