Class OpenNLPChunkerFilterFactory
Factory for OpenNLPChunkerFilter.
<fieldType name="text_opennlp_chunked" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.OpenNLPTokenizerFactory" sentenceModel="filename" tokenizerModel="filename"/>
<filter class="solr.OpenNLPPOSFilterFactory" posTaggerModel="filename"/>
<filter class="solr.OpenNLPChunkerFilterFactory" chunkerModel="filename"/>
</analyzer>
</fieldType>
Inheritance
System.Object
OpenNLPChunkerFilterFactory
Assembly: Lucene.Net.Analysis.OpenNLP.dll
Syntax
public class OpenNLPChunkerFilterFactory : TokenFilterFactory, IResourceLoaderAware
Constructors
|
Improve this Doc
View Source
OpenNLPChunkerFilterFactory(IDictionary<String, String>)
Declaration
public OpenNLPChunkerFilterFactory(IDictionary<string, string> args)
Parameters
Type |
Name |
Description |
IDictionary<System.String, System.String> |
args |
|
Fields
|
Improve this Doc
View Source
CHUNKER_MODEL
Declaration
public const string CHUNKER_MODEL = null
Field Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
Create(TokenStream)
Declaration
public override TokenStream Create(TokenStream input)
Parameters
Returns
Overrides
|
Improve this Doc
View Source
Declaration
public virtual void Inform(IResourceLoader loader)
Parameters
Implements