surprise 추천 알고리즘

데이터 분석/[Python] 머신러닝

surprise 추천 알고리즘

INCHELIN 2022. 1. 5. 22:19
728x90

surprise 패키지 설치

$ pip install scikit-surprise
$ conda install -c conda-forge scikit-surprise

 

surprise 추천 알고리즘 클래스

- SVD : 행렬 분해를 통한 잠재 요인 협업 필터링을 위한 SVD 알고리즘

- KNNBasic : 최근접 이웃 협업 필터링을 위한 KNN 알고리즘

BaselineOnly : 사용자 Bias와 아이템 Bias를 감안한 SGD 베이스라인 알고리즘

- SVD++, NMF 등등...

 

 

출처 : 파이썬 머신러닝 완벽가이드(권철민)

참고

http://surprise.readthedocs.io/en/stable

 

prediction_algorithms package — Surprise 1 documentation

© Copyright 2015, Nicolas Hug Revision fa745588.

surprise.readthedocs.io

http://surpriselib.com/ 

 

Home

A simple Python library for building and testing recommender systems.

surpriselib.com

 

728x90