-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Recommendation Engine class / MVP #28
Comments
Working on verbose logging from the cli as part of #16 which should get this rolling. |
Maybe we can start with just converting movie titles to and from Netflix IDs? The netflix_id should be stored in the dictionary that's in Mongo, and we should just be able to query for it. Unfortunately, this would be an exact match, so if someone said they liked "Star Wars", it wouldn't match "Star Wars, Episode IV: A New Hope" (if that was the title in the database). If we want to do more fuzzy matching, we could look into adding a "search service" of some sort. If this is the first bit of functionality we're adding to the RecommendationEngine class, we should create that class as part of this, even if it only contains a couple of methods related to this task and isn't complete. |
Current progress: #66 |
Create recommendation engine class that:
The text was updated successfully, but these errors were encountered: