Class NPClusteringKeywordExtractor
- java.lang.Object
-
- com.gengoai.hermes.extraction.keyword.NPClusteringKeywordExtractor
-
- All Implemented Interfaces:
Extractor
,KeywordExtractor
,Serializable
public class NPClusteringKeywordExtractor extends Object implements KeywordExtractor
Implementation of the NP Clustering Keyword Extractor presented in:
Bracewell, David B., Yan, Jiajun, and Ren, Fuji, (2008), Single Document Keyword Extraction For Internet News Articles, International Journal of Innovative Computing, Information and Control, 4, 905—913
- Author:
- David B. Bracewell
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NPClusteringKeywordExtractor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Extraction
extract(@NonNull HString source)
Generate anExtraction
from the givenHString
.void
fit(DocumentCollection corpus)
In certain cases a keyword extractor needs to collect corpus level statistics or construct a model of what a good keyword looks like.
-
-
-
Method Detail
-
extract
public Extraction extract(@NonNull @NonNull HString source)
Description copied from interface:Extractor
Generate anExtraction
from the givenHString
.
-
fit
public void fit(DocumentCollection corpus)
Description copied from interface:KeywordExtractor
In certain cases a keyword extractor needs to collect corpus level statistics or construct a model of what a good keyword looks like. The fit method allows implementations to perform this logic at a corpus level.- Specified by:
fit
in interfaceKeywordExtractor
- Parameters:
corpus
- the corpus to fit the extractor to
-
-