对于任何用户 lightfm 的新交互,在 fit_partial 之前和之后的建议都是相同的

发布于 2025-01-10 01:57:34 字数 89 浏览 0 评论 0原文

对于任何用户来说,假设出现了一些新的交互,然后我使用partial_fit仅使用新的交互数据来拟合数据集和模型,并且在对该用户进行部分拟合之前和之后得到相同的结果。

for any user let's say some new interactions come then I am fitting the dataset and model with only new interactions data using partial_fit and I am getting the same results before and after partial fit for that user.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失而复得 2025-01-17 01:57:34

我不太理解这个程序,但我认为你没有得到想要的结果,因为你没有定义函数,因此你正在使用全局变量而不是本地变量

尝试:

def makeitems(df2,user):
     ...
     return itemfeatures

我想发表评论,但我需要 50 次代表

I dont really understand the program but I think you are not getting the dessired results because you are not defining functions and hence you are working with global variables instead of local ones

try:

def makeitems(df2,user):
     ...
     return itemfeatures

I wanted to comment but I need 50 rep

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文