我有以下问题:
Consider a weighted direct graph.
Each node has a rating and the weighted edges represents
the "influence" of a node on its neighbors.
When a node rating change, the neighbors will see their own rating modified (positively or negatively)
如何在一个节点上传播新评级?
我认为这应该是一种标准算法,但是哪一种呢?
这是一个普遍的问题,但实际上我使用的是 Python ;)
谢谢
[编辑]
评级是 0 到 1 之间的简单浮点值:[0.0,1.0]
肯定存在收敛问题:我只想将传播限制为几次迭代......