THUwangcy / ReChorus

“Chorus” of recommendation models: a light and flexible PyTorch framework for Top-K recommendation.
MIT License
545 stars 91 forks source link

about the dataset rechorus #26

Closed zzj0123 closed 2 years ago

zzj0123 commented 2 years ago

Hello, can you tell me how the "relational ratio in test set" in the paper Rechorus is calculated? thank you very much

THUwangcy commented 2 years ago

Assuming we have 10 interactions in the test set, together with 10 corresponding historical sequences, we examine whether each testing item i_t is relational to any item j in the historical sequence (e.g., <j, also_buy, i_t> holds). If 3 testing items can be found relational to at least one item in the historical sequence, the relational ratio in test set is 30%.

zzj0123 commented 2 years ago

thank you!!!