1

I'm currently working on the TextRank algorithm, which uses PageRank. I was wondering how does PageRank take the edge weight into account when calculating the scores?

I'm working with Python to implement my textrank algorithm, can I use the pagerank Python function to compute the score of the nodes even though my graph is weighted (and the edge weight is important)?

4

1 回答 1

1

PageRank实际上使用马尔可夫链工作。

您可以在本文中找到有关它的更多详细信息(整个理论太长,无法在此处解释)。

于 2017-03-30T10:00:11.990 回答