RUCAIBox / RecSysDatasets

This is a repository of public data sources for Recommender Systems (RS).
https://recbole.io/
844 stars 132 forks source link

数据预处理问题 #99

Open liguogongdegou opened 2 years ago

liguogongdegou commented 2 years ago

请问一下您们在序列推荐这个任务下对一些模型的数据预处理工作是什么样的呢,比如一个会话序列是[1,2,3,4],请问您对其的处理过程是仅使用[1,2,3]预测4,还是使用[1,2,3]预测4,使用[1,2]预测3,使用[1]预测2呢,谢谢

hyp1231 commented 2 years ago

您好,是后一种,即“使用[1,2,3]预测4,使用[1,2]预测3,使用[1]预测2”。

代码可以参考 https://github.com/RUCAIBox/RecBole/blob/896155c56fb2f426554d1179dae85dc0a8f4a38e/recbole/data/dataset/sequential_dataset.py#L73-L89

liguogongdegou commented 2 years ago

好的,非常感谢解答。

zyx1017 commented 1 year ago

@hyp1231 如果想要关闭这种数据增强该如何操作