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
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionString[]getContext(String o) Builds up the list of contextual predicates given anobject. 
- 
Constructor Details
- 
BasicContextGenerator
public BasicContextGenerator() - 
BasicContextGenerator
Initializes aBasicContextGeneratorwith a different separator char. This overwrites the default whitespace separator.- Parameters:
 sep- Theseparator characterto use.
 
 - 
 - 
Method Details
- 
getContext
Description copied from interface:ContextGeneratorBuilds up the list of contextual predicates given anobject.- Specified by:
 getContextin interfaceContextGenerator<String>- Parameters:
 o- Theobjectused as input.
 
 -