-
I've attempted a reimplementation in PyTorch for the recsys framework RecBole here, https://github.com/RUCAIBox/RecBole/pull/594 so that it's convenient to compare with other algorithms, etc.
I rep…
-
使用model=NCEPLRec,自己的数据集进行试题个性化推荐
数据集如下:
user_id:token item_id:token rating:float
300872 200130 2
300872 200139 2
300872 200234 0
……
1、rating列是用户所做过试题的一个评分,例如做对得0(难度最低所以得分最低);做错且耗时很久为5分(対用户来说题目很…
-
Thank you for your great work on Recbole.
I followed the issues https://github.com/RUCAIBox/RecBole/discussions/1636, https://github.com/RUCAIBox/RecBole/issues/1854 and https://github.com/RUCAIBox…
-
**描述这个 bug**
I used WideDeep recommender and successfully loaded customized user embedding following [this](https://recbole.io/docs/user_guide/usage/load_pretrained_embedding.html) tutorial but Recbo…
-
Hello! Thank you for a such a great tool!
I have several questions on topics optimization and efficiency:
1. Do I correctly understand that sparse matrix of user - item interaction is always don…
-
In the original paper the authors use Binary cross entropy as the loss function (relevant code in the original implementation: https://github.com/kang205/SASRec/blob/master/model.py#L88, which uses 1 …
-
我想使用recbole来开发我自己的推荐模型,但目前通过文档我有些搞不清楚模型运行过程中各个环节都发生了什么,这让我有些不知道从何处下手构建我自己的数据处理到模型运行的流程。不知道贵团队能不能以某个已有模型——比如GRU4Rec——的开发流程示例,让我能够在各环节打断点或者写print,更直观的观察到各环节发生的事情,这会对我理解recbole框架产生极大的帮助。
类似pytorch_geo…
-
在我新增指标时,如ILS列表内相似性,我需要用到项目的向量,但是目前的参数字典中并没有提供,希望提供。谢谢
875155277@qq.com
-
后续recbole会引入多模态推荐的模型吗
-
请问一下您们在序列推荐这个任务下对一些模型的数据预处理工作是什么样的呢,比如一个会话序列是[1,2,3,4],请问您对其的处理过程是仅使用[1,2,3]预测4,还是使用[1,2,3]预测4,使用[1,2]预测3,使用[1]预测2呢,谢谢