hidasib / GRU4Rec

GRU4Rec is the original Theano implementation of the algorithm in "Session-based Recommendations with Recurrent Neural Networks" paper, published at ICLR 2016 and its follow-up "Recurrent Neural Networks with Top-k Gains for Session-based Recommendations". The code is optimized for execution on the GPU.
Other
754 stars 223 forks source link

Is the problem a sequence predict a value? #14

Closed siyuan126 closed 4 years ago

siyuan126 commented 7 years ago

I am a little confused about what the problem here is. Are we trying to use all the previous clicks in a sequence to predict last click in that sequence? If so, how is it possible to calculate recall @ 20? If it is a classification problem, how so?

DaveGeneral commented 6 years ago

through the implementation, the truth is see whether the ground true(the real click) is in the predict top20 or not, and it's not predict the 'last' click, it's the next click, and add the loss and recall every step together @siyuan126