Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 711 Bytes

File metadata and controls

11 lines (8 loc) · 711 Bytes

MuSearch

Java Collaborative filtering Engine.

Implemented using resources from Algorithms, 4th Edition By Sedgewick and Wayne.

Idea

Given a data set of 2 columns: User and Song, a graph can be created where user nodes are connected to song nodes. We can search for users that have similar song preferences and recommend each other songs.

Example with fruit purchase

Here we see that all 3 users bought apples so we assume they have similar taste preference. We find that users 1 and 2 bought oranges, which user 3 did not, therefore oranges would a good recommendation to user 3.

Example Image