collaborative filteringtopic modeling 을 합친 모델을 의미

  • Approaches
  • naive

The Generative Process for CTR

  1. 각 사용자 에 대해서 Latent vector 를 draw
  2. 각 아이템 에 대해서 다음을 실행
    1. Dirichlet distribution 를 활용하여 topic proportions 을 뽑음:
    2. item latent offset 를 뽑고, item latent vector 를 계산
    3. 번째 아이템 (문서) 의 번째 단어 에 대해서, 다음을 실행
      1. multinomial distribution 을 통해 topic assignment 를 결정:
      2. 해당 topic 에서 단어를 draw :
  3. 각 user-item 쌍 에 대해, rating 값을 draw:
    • 는 reward 를 관찰할 수 있는 정도의 confidence 를 의미한다
c_{ij}=\begin{cases}a&\text{if}r_{ij}=1\\b&\text{if}r_{ij}=0\end{cases} $$ where $a>b>0$ - $u_i$는 사용자의 latent vector를 의미 # The Graphical Representation ![|500](https://i.imgur.com/4pAt0LB.png) # Related ## Papers - [[Collaborative Topic Modeling for Recommending GitHub Repositories]] - [[Collaborative Topic Modeling for Recommending Scientific Articles]] ## Notes * [[Latent Dirichlet Allocation]] * [[Probabilistic latent Semantic Indexing]]