Class OpenNLPLemmatizerFilterFactory
Factory for OpenNLPLemmatizerFilter.
<fieldType name="text_opennlp_lemma" class="solr.TextField" positionIncrementGap="100"
<analyzer>
<tokenizer class="solr.OpenNLPTokenizerFactory"
sentenceModel="filename"
tokenizerModel="filename"/>
/>
<filter class="solr.OpenNLPLemmatizerFilterFactory"
dictionary="filename"
lemmatizerModel="filename"/>
</analyzer>
</fieldType>
Inheritance
System.Object
OpenNLPLemmatizerFilterFactory
Assembly: Lucene.Net.Analysis.OpenNLP.dll
Syntax
public class OpenNLPLemmatizerFilterFactory : TokenFilterFactory, IResourceLoaderAware
Constructors
|
Improve this Doc
View Source
OpenNLPLemmatizerFilterFactory(IDictionary<String, String>)
Declaration
public OpenNLPLemmatizerFilterFactory(IDictionary<string, string> args)
Parameters
Type |
Name |
Description |
IDictionary<System.String, System.String> |
args |
|
Fields
|
Improve this Doc
View Source
DICTIONARY
Declaration
public const string DICTIONARY = null
Field Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
LEMMATIZER_MODEL
Declaration
public const string LEMMATIZER_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