Fotiligner
Fotiligner
@Gabrielle240125 您好!您的解决方法没有问题,我们也会在后续更新中优化对自定义输入数据构造方式的说明
@andvikt Thank you for your suggestions ! Since Sequential Recommendation models in RecBole are formatted to predict the next item(only one) in the sequence, the calculation of our precision@k metrics...
@tripledoubleE the full_sort_scores() and full_sort_topk() functions are designed for users in test dataset, and you can adjust your datas or specific users into the dataset and input it into the...
@Elvenson Thank you for your advise to RecBole. We will revise the code according to the paper, test it on the datasets and update it soon.
@dexforint Thank you for your suggestions! We have just added the config information into our docs and config file. And Thanks again for your advises.
@Afar8612 Thanks for your attention to RecBole! For your issue, the hit rate means the ratio of items in the predicted rank list that falls in ground-true set, while the...
@tripledoubleE Thanks for your attention to RecBole! Actually the first way of defining train_neg_sample_args was included in the past version of recbole. Now we usually use the second way to...
@SergeyPetrakov Thank you for your suggestions! We haven't show the algorithm complexity of each model in our repository. We will soon make a table with details of algorithm complexity in...
@bkersbergen Thank you for your suggestions! The numpy operations in forward are mainly from function "_get_slice". We will rewrite the function and update the model.
@ralgond 感谢您的关注! train和test数据集中session id不重合,可以在同一阶段输入train和test数据集。将训练和测试分开会使模型ID域无法对齐。使用自定义划分的序列数据集可以通过设置`benchmark_filename`来实现,更多的细节可以参考[#issue 1069](https://github.com/RUCAIBox/RecBole/issues/1069)。