Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mahermalaeb
Last active November 21, 2019 02:03
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save mahermalaeb/3d03feb1bbada7e7e1438f86b1a8abb9 to your computer and use it in GitHub Desktop.
Save mahermalaeb/3d03feb1bbada7e7e1438f86b1a8abb9 to your computer and use it in GitHub Desktop.
The easy guide for building python collaborative filtering recommendation system in 2017
import zipfile
from surprise import Reader, Dataset, SVD, evaluate
# Unzip ml-100k.zip
zipfile = zipfile.ZipFile('ml-100k.zip', 'r')
zipfile.extractall()
zipfile.close()
# Read data into an array of strings
with open('./ml-100k/u.data') as f:
all_lines = f.readlines()
# Prepare the data to be used in Surprise
reader = Reader(line_format='user item rating timestamp', sep='\t')
data = Dataset.load_from_file('./ml-100k/u.data', reader=reader)
# Split the dataset into 5 folds and choose the algorithm
data.split(n_folds=5)
algo = SVD()
# Train and test reporting the RMSE and MAE scores
evaluate(algo, data, measures=['RMSE', 'MAE'])
# Retrieve the trainset.
trainset = data.build_full_trainset()
algo.train(trainset)
# Predict a certain item
userid = str(196)
itemid = str(302)
actual_rating = 4
print(algo.predict(userid, itemid, actual_rating))
@akashadhikari
Copy link

You might as well like to wrap the last print() function in line no. 32 for Python 3

print (algo.predict(userid, itemid, actual_rating))

@mahermalaeb
Copy link
Author

Wrapping print is done. Thanks!

@aman7895
Copy link

How can I use this package to predict items for a user? So the only input would be the user ID and the output should be a list of products based on the previous ratings! It would be great to get some help!

@mahermalaeb
Copy link
Author

There is no native function to predict top items for a specific user. However you can check this FAQ part of the documentation of Surprise How to get the top-N recommendations for each user. This example shows how to predict top-n items for all users but you can modify the code to predict items for a specific user.

@irlaroche
Copy link

Hello,
I'm a beginner and I use Python 3.7. I receive the following feedback when using your code:
ModuleNotFoundError: No module named 'surprise'

Could someone help me please?

@phillylovesdata
Copy link

Hi,
that just means you haven't installed surprise yet. In your python shell run "pip install scikit-surprise" or in your conda environment "conda install -c conda-forge scikit-surprise".

If you don't know what any of that means, I'd suggest starting at the beginning (with a python course or something) and not with recommender systems ;)

@TamTSE2301
Copy link

Hi. Now i want to change back the data type back to DataFrame (pandas) after applying SVD. Could you suggest the way to do it. Thanks

@gourxb
Copy link

gourxb commented Dec 3, 2018

How to get the latent feature (or embedding) for each user and item from the trained model?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment