Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Raspberry Pi 3 Cookbook for Python Programmers - Third Edition

You're reading from  Raspberry Pi 3 Cookbook for Python Programmers - Third Edition

Product type Book
Published in Apr 2018
Publisher
ISBN-13 9781788629874
Pages 552 pages
Edition 3rd Edition
Languages
Authors (2):
Steven Lawrence Fernandes Steven Lawrence Fernandes
Profile icon Steven Lawrence Fernandes
Tim Cox Tim Cox
Profile icon Tim Cox
View More author details
Toc

Table of Contents (23) Chapters close

Title Page
Copyright and Credits
Dedication
Packt Upsell
Contributors
Preface
1. Getting Started with a Raspberry Pi 3 Computer 2. Dividing Text Data and Building Text Classifiers 3. Using Python for Automation and Productivity 4. Predicting Sentiments in Words 5. Creating Games and Graphics 6. Detecting Edges and Contours in Images 7. Creating 3D Graphics 8. Building Face Detector and Face Recognition Applications 9. Using Python to Drive Hardware 10. Sensing and Displaying Real-World Data 11. Building Neural Network Modules for Optical Character Recognition 12. Building Robots 13. Interfacing with Technology 14. Can I Recommend a Movie for You? 1. Hardware and Software List 2. Other Books You May Enjoy Index

Developing a movie recommendation module


We are now ready to build the movie recommendation engine. We will use all the functionalities that we built in the previous recipes. Let's see how it can be done.

How to do it...

  1. We will create a new Python file and import the following packages:
import json 
import numpy as np 
from euclidean_score import euclidean_score 
from pearson_score import pearson_score 
from search_similar_user import search_similar_user
  1. For movie recommendations for a given user, we will define a function first. We now check whether the user already exists:
# Generate recommendations for a given user 
def recommendation_generated(dataset, user): 
if user not in dataset: 
raiseTypeError('User ' + user + ' not present in the dataset') 
  1. Compute the person score for the present user:
sumofall_scores= {} 
identical_sums= {} 
for u in [x for x in dataset if x != user]: 
identical_score= pearson_score(dataset, user, u) 
if identical_score<= 0: 
continue 
  1. Find the movies that have...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}