Package opennlp.tools.ml.maxent
Class BasicContextGenerator
java.lang.Object
opennlp.tools.ml.maxent.BasicContextGenerator
- All Implemented Interfaces:
ContextGenerator<String>
A
ContextGenerator
implementation for maxent decisions, assuming that the input
given to the getContext(String)
method is a String containing contextual
predicates separated by spaces, for instance:
cp_1 cp_2 ... cp_n
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionString[]
getContext
(String o) Builds up the list of contextual predicates given anobject
.
-
Constructor Details
-
BasicContextGenerator
public BasicContextGenerator() -
BasicContextGenerator
Initializes aBasicContextGenerator
with a different separator char. This overwrites the default whitespace separator.- Parameters:
sep
- Theseparator character
to use.
-
-
Method Details
-
getContext
Description copied from interface:ContextGenerator
Builds up the list of contextual predicates given anobject
.- Specified by:
getContext
in interfaceContextGenerator<String>
- Parameters:
o
- Theobject
used as input.
-