추천 시스템 논문 읽기 - 1
고려대학교 DSBA 천우진님의 영상 자료를 보고, 학습한 자료입니다.
본 논문에서는 이러한 auto-regressive tendency를 반영해 효율적인 recsys를 고안함.
Local-global approach 방법으로 2개로 쪼개어 접근:
metric learning:
contributions
Sequence-aware Recommender systems
Neural Attention model
Attention Mechanism: RNN의 long-term dependnecy를 개선해주며, CNN 모델에게는 input의 중요 부분에 집중할 수 있도록 도움
Self-attention: input sequence의 attention weight들이 다른 input sequence에 끼치는 영향을 파악, 정확도와 계산 복잡도 측면의 개선 가능
기존에는 item embedding과 user embedding간의 matrix factorization을 통해 interaction을 계산했으나, 이러한 dot product가 metric learning의 inequality property를 훼손하여 sub-optimal로 가게 함.
Objective Function
Short-term rec score (user u와 다음 item간의):
위의 1.과 2.에 weight parameter를 곱해주어 선형결합한 값을 y_t+1_u로 사용. 이는 t+1 item을 user u가 선호할 확률을 의미함.