Package opennlp.tools.util
Schnittstelle BeamSearchContextGenerator<T>
- Alle bekannten Unterschnittstellen:
ChunkerContextGenerator
,LemmatizerContextGenerator
,NameContextGenerator
,POSContextGenerator
- Alle bekannten Implementierungsklassen:
ChunkContextGenerator
,ConfigurablePOSContextGenerator
,DefaultChunkerContextGenerator
,DefaultLemmatizerContextGenerator
,DefaultNameContextGenerator
,DefaultPOSContextGenerator
public interface BeamSearchContextGenerator<T>
Interface for context generators used with a sequence beam search.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungString[]
getContext
(int index, T[] sequence, String[] priorDecisions, Object[] additionalContext) Returns the context for the specified position in the specifiedsequence
(list).
-
Methodendetails
-
getContext
Returns the context for the specified position in the specifiedsequence
(list).- Parameter:
index
- The index of thesequence
.sequence
- The sequence ofitems
over which the beam search is performed.priorDecisions
- The sequence of decisions made prior to the context for which this decision is being made.additionalContext
- Any additional context specific to a class implementing this interface.- Gibt zurück:
- The context for the specified
index
in the specifiedsequence
.
-