Package org.apache.nutch.crawl
Class TextProfileSignature
- java.lang.Object
-
- org.apache.nutch.crawl.Signature
-
- org.apache.nutch.crawl.TextProfileSignature
-
- All Implemented Interfaces:
Configurable
public class TextProfileSignature extends Signature
An implementation of a page signature. It calculates an MD5 hash of a plain text "profile" of a page. In case there is no text, it calculates a hash using the
MD5Signature
.The algorithm to calculate a page "profile" takes the plain text version of a page and performs the following steps:
- remove all characters except letters and digits, and bring all characters to lower case,
- split the text into tokens (all consecutive non-whitespace characters),
- discard tokens equal or shorter than MIN_TOKEN_LEN (default 2 characters),
- sort the list of tokens by decreasing frequency,
- round down the counts of tokens to the nearest multiple of QUANT (
QUANT = QUANT_RATE * maxFreq
, whereQUANT_RATE
is 0.01f by default, andmaxFreq
is the maximum token frequency). IfmaxFreq
is higher than 1, then QUANT is always higher than 2 (which means that tokens with frequency 1 are always discarded). - tokens, which frequency after quantization falls below QUANT, are discarded.
- create a list of tokens and their quantized frequency, separated by spaces, in the order of decreasing frequency.
- Author:
- Andrzej Bialecki <ab@getopt.org>
-
-
Constructor Summary
Constructors Constructor Description TextProfileSignature()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
calculate(Content content, Parse parse)
static void
main(String[] args)
void
setConf(Configuration conf)
-
-
-
Method Detail
-
setConf
public void setConf(Configuration conf)
- Specified by:
setConf
in interfaceConfigurable
- Overrides:
setConf
in classSignature
-
-