Package opennlp.tools.parser.chunking
Class BuildContextGenerator
java.lang.Object
opennlp.tools.parser.AbstractContextGenerator
opennlp.tools.parser.chunking.BuildContextGenerator
Generates predictive contexts for deciding how constituents should be combined.
- See Also:
-
Constructor Summary
ConstructorDescriptionInstantiates aBuildContextGenerator
for making decisions about combining constituents.Instantiates aBuildContextGenerator
for making decisions about combining constituents using aDictionary
. -
Method Summary
Modifier and TypeMethodDescriptionString[]
getContext
(Object o) String[]
getContext
(Parse[] constituents, int index) Finds the predictive context used to determine how constituent at the specifiedindex
should be combined with other constituents.
-
Constructor Details
-
BuildContextGenerator
public BuildContextGenerator()Instantiates aBuildContextGenerator
for making decisions about combining constituents. -
BuildContextGenerator
Instantiates aBuildContextGenerator
for making decisions about combining constituents using aDictionary
.- Parameters:
dict
- ADictionary
to be used during context generation.
-
-
Method Details
-
getContext
-
getContext
Finds the predictive context used to determine how constituent at the specifiedindex
should be combined with other constituents.- Parameters:
constituents
- Theconstituents
which have yet to be combined into new constituents.index
- The index of the constituent which is being considered.- Returns:
- The context for building constituents at the specified
index
.
-