PHP 贝叶斯评级 - 加权投票评级系统

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 贝叶斯评级 - 加权投票评级系统相关的知识,希望对你有一定的参考价值。

$avg_num_votes = 18; // Average number of votes in all products
$avg_rating = 3.7; // Average rating for all products
$this_num_votes = 6; // Number of votes for this product
$this_rating = 4; // Rating for this product


$bayesian_rating = ( ($avg_num_votes * $avg_rating) + ($this_num_votes * this_rating) ) / ($avg_num_votes + $this_num_votes);

以上是关于PHP 贝叶斯评级 - 加权投票评级系统的主要内容,如果未能解决你的问题,请参考以下文章

贝叶斯评分-加权投票评分系统

python 熊猫贝叶斯评级

推荐系统笔记:基于贝叶斯的协同过滤

如何存储评级系统的 ID?

PHP Elo评级系统测试

php和MySQL中简单的喜欢/不喜欢评级系统