Skip to content

Instantly share code, notes, and snippets.

@DivyanshByte
Last active February 15, 2021 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DivyanshByte/3199d646742630f5f9bea0909a526f6e to your computer and use it in GitHub Desktop.
Save DivyanshByte/3199d646742630f5f9bea0909a526f6e to your computer and use it in GitHub Desktop.
Movie Recommender Using LightFM
import numpy as np
from lightfm.datasets import fetch_movielens
from lightfm import LightFM
#fetch data from model
data = fetch_movielens(min_rating = 1.0)
#create model
model = LightFM(loss = 'warp')
#train mode
model.fit(data['train'], epochs=30, num_threads=2)
#recommender fucntion
def sample_recommendation(model, data, user_ids):
#number of users and movies in training data
n_users, n_items = data['train'].shape
for user_id in user_ids:
#movies they already like
known_positives = data['item_labels'][data['train'].tocsr()[user_id].indices]
#movies our model predicts they will like
scores = model.predict(user_id, np.arange(n_items))
#sort them in order of most liked to least
top_items = data['item_labels'][np.argsort(-scores)]
#print out the results
print("User %s" % user_id)
print(" Known positives:")
for x in known_positives[:3]:
print(" %s" % x)
print(" Recommended:")
for x in top_items[:3]:
print(" %s" % x)
sample_recommendation(model, data, [1,10,100,4])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment