次の問題があります。
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)
1 つのノードで新しい評価を伝播する方法は?
これは標準のアルゴリズムであるべきだと思いますが、どのアルゴリズムですか?
これは一般的な質問ですが、実際には Python を使用しています ;)
ありがとう
[編集]
評価は 0 から 1 の間の単純な float 値です: [0.0,1.0]
確かに収束の問題があります: 伝播を数回の反復に制限したいだけです...