Package opennlp.tools.namefind
Interface DocumentNameFinder
-
public interface DocumentNameFinderInterface for processing an entire document allowing aTokenNameFinderto use context from the entire document. EXPERIMENTAL: This interface has been added as part of a work in progress and might change without notice.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Span[][]find(String[][] document)Finds tokensspansfor the specified document of sentences and their tokens.
-
-
-
Method Detail
-
find
Span[][] find(String[][] document)
Finds tokensspansfor the specified document of sentences and their tokens.Span start and end indices are relative to the sentence they are in. For example, a span identifying a name consisting of the first and second word of the second sentence would be
0..2and be referenced asspans[1][0].- Parameters:
document- A 2-dimensional array of tokens for each sentence of a document.- Returns:
- The
token spansfor each sentence of the specified document.
-
-