Open jexp opened 7 years ago
There are several variations of PageRank. We implemented PR = ( 1 - d ) / N + d * sum ( PR_v / outDegree_v )
. We should check both implementations.
Afaik that's the same that the other page-rank implements (the textbook one). Yes, please check.
I reviewed our pageRank implementation and noticed a possible bug which might lead to wrong results. We work on the pageRank array while we doing writes on it in one iteration. We should create an empty buffer for the new ranks while reading on the old ranks from the previous iteration.
Cool, please send the PR when you get it fixed.
possibly fixed in #174
@tomasonjo can you please verify whether this mismatch still happens?
Like 2 orders of magnitude different score values?