drhuangliwei / PTGCN

A python vision code of Position-enhanced and Time-aware Graph Convolutional Network for Sequential Recommendations
30 stars 8 forks source link

数据集下载链接 #1

Open LronKingGGB opened 5 months ago

LronKingGGB commented 5 months ago

你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样

drhuangliwei commented 5 months ago

你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。

在 2024-04-09 11:36:54,"LronKingGGB" @.***> 写道:

你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.***>

LronKingGGB commented 5 months ago

你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.>

fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大

drhuangliwei commented 5 months ago

需要多轮次处理,因为但你处理一轮之后,可能导致剩下的用户和item又变为了冷启动用户和item,因此最好是方式,设置循环处理,设置循环停止的条件。

在 2024-04-09 14:55:52,"LronKingGGB" @.***> 写道:

你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.>

fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

LronKingGGB commented 5 months ago

需要多轮次处理,因为但你处理一轮之后,可能导致剩下的用户和item又变为了冷启动用户和item,因此最好是方式,设置循环处理,设置循环停止的条件。 在 2024-04-09 14:55:52,"LronKingGGB" @.> 写道: 你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.> fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.>

是否可以理解为data_prepar脚本中循环处理的数量可以增加一些,默认的ml-1m数据集处理轮数是1000,其他数据集可以调成2000甚至更多

drhuangliwei commented 5 months ago

可以的,只需要将循环的终止条件设置好。

在 2024-04-09 15:26:15,"LronKingGGB" @.***> 写道:

需要多轮次处理,因为但你处理一轮之后,可能导致剩下的用户和item又变为了冷启动用户和item,因此最好是方式,设置循环处理,设置循环停止的条件。 在 2024-04-09 14:55:52,"LronKingGGB" @.> 写道: 你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.> fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.>

是否可以理解为data_prepar脚本中循环处理的数量可以增加一些,默认的ml-1m数据集处理轮数是1000,其他数据集可以调成2000甚至更多

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

LronKingGGB commented 5 months ago

ratings = ratings[(ratings['user_count'] >= 8) & (ratings['item_count'] >= 8)] 请问我是否可以调这个参数,我发现从5改到8后边数确实有减少

可以的,只需要将循环的终止条件设置好。 在 2024-04-09 15:26:15,"LronKingGGB" @.> 写道: 需要多轮次处理,因为但你处理一轮之后,可能导致剩下的用户和item又变为了冷启动用户和item,因此最好是方式,设置循环处理,设置循环停止的条件。 在 2024-04-09 14:55:52,"LronKingGGB" @.> 写道: 你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.> fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.> 是否可以理解为data_prepar脚本中循环处理的数量可以增加一些,默认的ml-1m数据集处理轮数是1000,其他数据集可以调成2000甚至更多 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.>

LronKingGGB commented 5 months ago

你好,原始数据集进行处理后也没有得到文章中写的数据集标准。请问一下能否可以提供一下另外两个数据集的ratings.dat呢

------------------ 原始邮件 ------------------ 发件人: "drhuangliwei/PTGCN" @.>; 发送时间: 2024年4月9日(星期二) 下午3:28 @.>; 抄送: "Lron @.**@.>; 主题: Re: [drhuangliwei/PTGCN] 数据集下载链接 (Issue #1)

可以的,只需要将循环的终止条件设置好。

在 2024-04-09 15:26:15,"LronKingGGB" @.***> 写道:

需要多轮次处理,因为但你处理一轮之后,可能导致剩下的用户和item又变为了冷启动用户和item,因此最好是方式,设置循环处理,设置循环停止的条件。 在 2024-04-09 14:55:52,"LronKingGGB" @.> 写道: 你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.> fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.>

是否可以理解为data_prepar脚本中循环处理的数量可以增加一些,默认的ml-1m数据集处理轮数是1000,其他数据集可以调成2000甚至更多

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.> — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.>

drhuangliwei commented 5 months ago

我回头找一下,如果找到了发给你

---- 回复的原邮件 ---- | 发件人 | @.> | | 日期 | 2024年04月09日 20:44 | | 收件人 | @.> | | 抄送至 | @.>@.> | | 主题 | Re: [drhuangliwei/PTGCN] 数据集下载链接 (Issue #1) |

你好,原始数据集进行处理后也没有得到文章中写的数据集标准。请问一下能否可以提供一下另外两个数据集的ratings.dat呢

------------------ 原始邮件 ------------------ 发件人: "drhuangliwei/PTGCN" @.>; 发送时间: 2024年4月9日(星期二) 下午3:28 @.>; 抄送: "Lron @.**@.>; 主题: Re: [drhuangliwei/PTGCN] 数据集下载链接 (Issue #1)

可以的,只需要将循环的终止条件设置好。

在 2024-04-09 15:26:15,"LronKingGGB" @.***> 写道:

需要多轮次处理,因为但你处理一轮之后,可能导致剩下的用户和item又变为了冷启动用户和item,因此最好是方式,设置循环处理,设置循环停止的条件。 在 2024-04-09 14:55:52,"LronKingGGB" @.> 写道: 你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.> fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.>

是否可以理解为data_prepar脚本中循环处理的数量可以增加一些,默认的ml-1m数据集处理轮数是1000,其他数据集可以调成2000甚至更多

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.> — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.>

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

LronKingGGB commented 5 months ago

你好,请问有找到数据集吗或者下载链接吗

------------------ 原始邮件 ------------------ 发件人: "drhuangliwei/PTGCN" @.>; 发送时间: 2024年4月10日(星期三) 中午12:22 @.>; 抄送: "Lron @.**@.>; 主题: Re: [drhuangliwei/PTGCN] 数据集下载链接 (Issue #1)

我回头找一下,如果找到了发给你

---- 回复的原邮件 ---- | 发件人 | @.> | | 日期 | 2024年04月09日 20:44 | | 收件人 | @.> | | 抄送至 | @.>@.> | | 主题 | Re: [drhuangliwei/PTGCN] 数据集下载链接 (Issue #1) |

你好,原始数据集进行处理后也没有得到文章中写的数据集标准。请问一下能否可以提供一下另外两个数据集的ratings.dat呢

------------------ 原始邮件 ------------------ 发件人: "drhuangliwei/PTGCN" @.>; 发送时间: 2024年4月9日(星期二) 下午3:28 @.>; 抄送: "Lron @.**@.>; 主题: Re: [drhuangliwei/PTGCN] 数据集下载链接 (Issue #1)

可以的,只需要将循环的终止条件设置好。

在 2024-04-09 15:26:15,"LronKingGGB" @.***> 写道:

需要多轮次处理,因为但你处理一轮之后,可能导致剩下的用户和item又变为了冷启动用户和item,因此最好是方式,设置循环处理,设置循环停止的条件。 在 2024-04-09 14:55:52,"LronKingGGB" @.> 写道: 你好,需要将原始数据集进行预处理,可以参照实验部分的预处理过程。 在 2024-04-09 11:36:54,"LronKingGGB" @.> 写道: 你好,可以提供一下另外两个数据集的下载链接吗,在网上找了两个好像avr of user:和avr of item都不太一样 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.> fname: data/Amazon_CDs_and_Vinyl user_count:75258,item_count:64443 avr of user:14.584389699433947avr of item:17.031981751315115 1097592 这是经过data_prepar文件处理后的结果,发现数据规模差距和文章上写的有点大 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.>

是否可以理解为data_prepar脚本中循环处理的数量可以增加一些,默认的ml-1m数据集处理轮数是1000,其他数据集可以调成2000甚至更多

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.> — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.>

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.> — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.>