Finding Similar Users and Items with k-Nearest Neighbors
Was this section helpful?
Pattern Recognition and Machine Learning, Christopher M. Bishop, 2006 (Springer) - Comprehensive textbook providing a mathematical foundation for machine learning, including k-Nearest Neighbors algorithm principles.
Item-based collaborative filtering recommendation algorithms, Badrul Sarwar, George Karypis, Joseph A Konstan, John Riedl, 2001Proceedings of the 10th International Conference on World Wide Web (WWW '01) (Association for Computing Machinery (ACM))DOI: 10.1145/371920.372071 - Foundational paper that introduced and evaluated item-based collaborative filtering, a widely adopted approach for recommendation systems.
sklearn.neighbors.NearestNeighbors, The scikit-learn team, 2024 - Official documentation for Scikit-learn's k-Nearest Neighbors algorithm implementation, including parameters and usage examples for finding neighbors.