-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于 物品冷启动-利用物品的内容信息 中的遗留问题 #2
Comments
这种计算方式可以理解为另外一种相似度计算,就是内积,应该也是ok的,谢谢~ |
嗯嗯,感谢您的回复,内积确实可以作为一种相似度,但与书中的差异仍不甚明了,先不管了QAQ |
是不是TF-IDF公式算错了。。。 |
@SuperficialStudents 有可能,年代久远,有些忘了QAQ |
好的,感谢回复 |
@Magic-Bubble 您好,你在 物品冷启动-利用物品的内容信息 中提到的问题 “实验结果与书中的不符合(大多数指标明显偏低),不知道是否是实现错误”
我尝试研究了几种可能的原因,发现在计算相似度时忽略余弦相似度的分母部分的话,结果会有大幅提升,接近书中的水平。
注释掉分母部分前后的结果:
Average Result (M=8, N=10, K=10): {'Precision': 1.79875, 'Recall': 0.86375, 'Coverage': 16.61625, 'Popularity': 4.617733125000001}
Average Result (M=8, N=10, K=10): {'Precision': 5.01625, 'Recall': 2.4099999999999997, 'Coverage': 14.30125, 'Popularity': 5.658101375}
似乎是因为余弦相似度的分母部分造成了这样一个问题
The text was updated successfully, but these errors were encountered: