Recommender System Fragment 1

来源:互联网 发布:linux 制作iso 编辑:程序博客网 时间:2024/06/07 06:49

Recommender System Fragment_1

  1. Procedure

    • when a scenario(user) comes, fetch all the user’s properties and then pull candidates(items) from several queues depending on recall strategy(how? what model?). rank over all these candidate(~1000?) and push out the top ones.
  2. Details

    • each queue is updated dynamically.
    • queue length? ~ 1000?
    • always fetch from queue front? a bit slower and slower for bloom filter but acceptable cz queue not too long.
    • ranking is a pre-trained stable model. just do ‘prediction’. parallel if needed.
    • all queue and BF could be in memory.
  3. Qs

    • how to get user’s features? kv db and/or what? – kv db
    • how to get doc features? are they stored in queue? – yes
    • how and where to apply anti-spam & anti-cheating module?
0 0
原创粉丝点击