Package opennlp.tools.formats.masc
Class MascDocument
java.lang.Object
opennlp.tools.formats.masc.MascDocument
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Checks whether there is NER by GATE-5.0 ANNIE.boolean
Checks whether there is Penn tagging produced by GATE-5.0 ANNIE.static MascDocument
parseDocument
(String path, InputStream f_primary, InputStream f_seg, InputStream f_penn, InputStream f_s, InputStream f_ne) Initializes aMascDocument
with all the stand-off annotations translated into the internal structure.read()
void
reset()
Resets the reading of sentences to the beginning of the document.
-
Constructor Details
-
MascDocument
-
-
Method Details
-
parseDocument
public static MascDocument parseDocument(String path, InputStream f_primary, InputStream f_seg, InputStream f_penn, InputStream f_s, InputStream f_ne) throws IOException Initializes aMascDocument
with all the stand-off annotations translated into the internal structure.- Parameters:
path
- The path where the document header is.f_primary
- Thefile
with the raw corpus text.f_seg
- Thefile
with segmentation into quarks.f_ne
- Thefile
with named entities.f_penn
- Thefile
with tokenization and Penn POS tags produced by GATE-5.0 ANNIE application.f_s
- Thefile
with sentence boundaries.- Returns:
- A document containing the text and its annotations. Immutability is not guaranteed yet.
- Throws:
IOException
- if the raw data cannot be read or the alignment of the raw data with annotations fails
-
hasPennTags
public boolean hasPennTags()Checks whether there is Penn tagging produced by GATE-5.0 ANNIE.- Returns:
true
if this file has aligned tags/tokens,false
otherwise.
-
hasNamedEntities
public boolean hasNamedEntities()Checks whether there is NER by GATE-5.0 ANNIE.- Returns:
true
if this file has named entities,false
otherwise.
-
read
- Returns:
- Retrieves the next sentence or
null
if end of document reached.
-
reset
public void reset()Resets the reading of sentences to the beginning of the document.
-