Skip to main content

Questions tagged [recommender-system]

Everything related to recommender systems

6 votes
2 answers
114 views

I am working on a content-based recommendation system. I am planning to frame this as a binary classification problem (1 = click/0 = not click). And I was looking for paper/readings on feature ...
louise_vuitton's user avatar
4 votes
0 answers
33 views

I just had a rather unsuccessful interview with a major tech company, which started going wrong after I had presented (pretty well, I think) a particular kind of recommender system based on a neural ...
Zorgoth's user avatar
  • 305
6 votes
1 answer
147 views

I've been working in data science for a long time, but very rarely have I been called upon to implement an ML algorithm; I've just ran other people's libraries. I'm trying to pick up the skill. I'm ...
Zorgoth's user avatar
  • 305
1 vote
0 answers
28 views

I am trying to understand the paper of Youtube recommender: https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/45530.pdf However, in the candidate generation model, the ...
just_code_dog's user avatar
0 votes
0 answers
56 views

I need to find the users with similar behavior on the website for personalized recommendations. I have a large database of users' actions on the website collected with Retentioneering. I need to ...
average_scholar's user avatar
1 vote
1 answer
130 views

I'm preparing for an ML system design interview and have a question about the choice of models in recommendation systems and similar domains like search ranking. When presenting several items to a ...
Ilan Geffen's user avatar
1 vote
0 answers
71 views

I’m designing a recommendation feature for a student internship platform. Students will explicitly select their interests and skills during registration, and recruiters will post internship ...
Amira's user avatar
  • 11
1 vote
1 answer
74 views

I’m building a recommendation system where each user interacts with sessions (topics with a title and description). I want to represent each user using their last 5 session interactions by creating a ...
Swastik's user avatar
  • 111
1 vote
0 answers
31 views

In section 19.4 of https://animlbook.com/recommender_systems/recommendation/index.html co-occurance matrix is suggested and Jaccard similarity is one of the normalisation methods suggested. Other ...
Gupta's user avatar
  • 35
0 votes
1 answer
62 views

I'm trying to implement Google's wide and deep model and I have a question about its output. According to the equation (3) in the paper: $$ P(Y=1|X) = \sigma(w_{wide}^T[x,\phi(x)] + w_{deep}^T a^{(l_f)...
David Davó's user avatar
0 votes
0 answers
38 views

I have a dataset representing the stock of a shop over several days. For each day, I have hourly inventories of the objects in the shop. Some products are sold, and others might temporarily disappear (...
Danielakaws's user avatar
1 vote
0 answers
229 views

I'm trying to build a recommendation on a dataset of product purchases. The dataset consists of roughly 4 Amazon products that a particular user has bought (in sequence). I want to use the first 3 ...
Hari's user avatar
  • 11
1 vote
0 answers
26 views

Article Item-based Collaborative Filtering Recommendation Algorithms by Badrul Sarwar, George Karypis, Joseph Konstan, and John Riedl gives this equation: $$P_{u,i} = \frac{\sum_{j}^S s_{i,j} * R_{u,j}...
Catnip's user avatar
  • 21
1 vote
0 answers
48 views

What method does implicit(python library) use to calculate scores when recommending items to users using the CosineRecommender model? I understood that it happens in the NearestNeighboursScorer class. ...
Catnip's user avatar
  • 21
1 vote
0 answers
54 views

Most of the implementations I have seen of FM rely on an Embedding lookup matrix, restricting the variables that can be used to some categorical variable. Is there a way to use FM with both ...
Daniel Ávila Vera's user avatar

15 30 50 per page
1
2 3 4 5
32