Package opennlp.tools.parser.treeinsert
Class BuildContextGenerator
- java.lang.Object
-
- opennlp.tools.parser.AbstractContextGenerator
-
- opennlp.tools.parser.treeinsert.BuildContextGenerator
-
public class BuildContextGenerator extends AbstractContextGenerator
Creates the features or contexts for the building phase of parsing. This phase builds constituents from the left-most node of these constituents.- See Also:
AbstractContextGenerator
-
-
Constructor Summary
Constructors Constructor Description BuildContextGenerator()
Instantiates aBuildContextGenerator
for making decisions.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]
getContext(Object o)
String[]
getContext(Parse[] constituents, int index)
Finds the contexts/features for the decision to build a new constituent for the specified parse at the specifiedindex
.
-
-
-
Constructor Detail
-
BuildContextGenerator
public BuildContextGenerator()
Instantiates aBuildContextGenerator
for making decisions.
-
-
Method Detail
-
getContext
public String[] getContext(Parse[] constituents, int index)
Finds the contexts/features for the decision to build a new constituent for the specified parse at the specifiedindex
.- Parameters:
constituents
- Theconstituents
of the parse so far.index
- The index of the constituent where a build decision is being made.- Returns:
- The contexts/features for the decision to build a new constituent.
-
-