Document Recommendation

Posted on Wed, Mar 17, 2021

Introduction

Business objective — For the given user query, recommend relevant documents (BRM_ifam).

Technical objective: 1-to-N mapping of given input text

Proposed Framework 1 — Hybrid Recommender System

Proposed Framework 2 — Content based Recommender System

  1. Find A most similar user → Cosine similarity
  2. For each user in A, find TopK Most Similar Items → Map Argsort
  3. For each item Find TopL Most Similar Items → Cosine similarity
  4. Display
  5. Implement an evaluation metric
  6. Evaluate

Results and Discussion

Variables (during recommendation, you will be asked 2–3 choices, the meaning of those choices are as following)

Code