Continuing on the collaborative filtering theme from my collaborative filtering with binary data example i’m going to look at another way to do collaborative filtering using matrix factorization with implicit data. This story relies heavily on the work of Yifan Hu, Yehuda Koren, Chris Volinsky in their paper on Collaborative Filtering for Implicit Feedback as well as code and concepts from Ben Frederickson , Chris Johnson , Jesse Steinweg-Woods and Erik Bernhardsson . Content: Overview Implicit vs explicit The dataset Alternating least squares Similar items Making recommendation Overview We’re going to write a simple implementation of an implicit (more on that below) recommendation algorithm. We want to be able to find similar items and make recommendations for our users. I will focus on both the theory, some math as well as a couple of different python implementations. Since we’re taking a collaborative filtering ...