Dear Wiki user, You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.
The "NewScoring" page has been changed by ArthurCinader: https://wiki.apache.org/nutch/NewScoring?action=diff&rev1=8&rev2=9 Comment: typo To understand this we are required to explain how the !LinkRank scores are calculated exactly. - The !WebGraph and !LinkRank classes work together. The WebGraph is were links from either the same domains or same hosts can be ignored (or allowed). The configuration parameters: + The !WebGraph and !LinkRank classes work together. The WebGraph is where links from either the same domain or same host can be ignored (or allowed). The configuration parameters: {{{ link.ignore.internal.host = true|false link.ignore.internal.domain = true|false }}} - can be used to change that behavior. By default it ignores links from the same domain and hosts. So a link from news.google.com wouldn't be counted and wouldn't raise the score for www.google.com. The !WebGraph just builds the lists of inlinks, outlinks, and nodes then the !LinkRank class processes that to create the score. !LinkRank does follow very closely to the original pagerank formula which is something like: + can be used to change that behavior. By default it ignores links from the same domain and host. So a link from news.google.com wouldn't be counted and wouldn't raise the score for www.google.com. The !WebGraph just builds the lists of inlinks, outlinks, and nodes then the !LinkRank class processes that to create the score. !LinkRank does follow very closely to the original pagerank formula which is something like: '''(1 - dampingFactor) + (dampingFactor * totalInlinkScore)'''

