Re: How does scoring chain work

2017-03-29 Thread lewis john mcgibbney
On Wed, Mar 29, 2017 at 6:16 AM, <user-digest-h...@nutch.apache.org> wrote: > > From: Yongyao Jiang <j.yongya...@gmail.com> > To: user@nutch.apache.org > Cc: > Bcc: > Date: Tue, 28 Mar 2017 16:48:38 -0400 > Subject: How does scoring chain work > Hi, > > I

Re: How does scoring chain work

2017-03-29 Thread Sebastian Nagel
Hi, the score calculated so far (by the filter(s) in front of the chain) is passed to the method of the next scoring filter - either directly as float argument - or as field, e.g., of a CrawlDatum object It's on the ScoringFilter implementation whether to ignore this value (overwriting it), to

How does scoring chain work

2017-03-28 Thread Yongyao Jiang
Hi, I got a question about how the scoring works when I was trying to use multiple scoring plugins together. For example, if I use "scoring-(opic|similarity)", the opic score of a page is 0.2, and the similarity score is 0.5, what would be the final score? Is there anyway to configure this?