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..