Replies: 2 comments
-
In this homework, let us ignore divergent cases. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Closing.. please feel free to re-open if needed. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi. I think that simplified version of PageRank algorithm has some diverging case so that iteration does not end.
For example, consider following
web
objectIn this case, the algorithm will infinitely loop between two imporance states,
(0: 0, 1: 2, 2: 1)
and(0: 0, 1: 1, 2: 2)
.Is my understanding correct? If yes, what should we do about this case?
(I think if all pages have self-referencing links, there will be no diverging case...)
Beta Was this translation helpful? Give feedback.
All reactions