Package opennlp.tools.formats
Klasse BioNLP2004NameSampleStream
java.lang.Object
opennlp.tools.formats.BioNLP2004NameSampleStream
- Alle implementierten Schnittstellen:
AutoCloseable
,ObjectStream<NameSample>
@Internal
public class BioNLP2004NameSampleStream
extends Object
implements ObjectStream<NameSample>
A
sample stream
for the training files of the
BioNLP/NLPBA 2004 shared task.
The data contains five named entity types:
DNA
RNA
protein
cell_type
cell_line
Data can be found on this website, or in this repository.
The BioNLP/NLPBA 2004 data were originally published here:
http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA/ERtask/report.html,
yet this page was gone when last checked in December 2022.
It looks like this repo contains a copy of the data located on the original page: The BioNLP 2004 seems to be related to http://www.geniaproject.org/shared-tasks/bionlp-jnlpba-shared-task-2004
Note: Do not use this class, internal use only!
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final int
static final int
static final int
static final int
static final int
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungBioNLP2004NameSampleStream
(InputStreamFactory in, int types) Initializes aBioNLP2004NameSampleStream
. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
close()
Closes theObjectStream
and releases all allocated resources.read()
Returns the nextObjectStream
object.void
reset()
Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly.
-
Felddetails
-
GENERATE_DNA_ENTITIES
public static final int GENERATE_DNA_ENTITIES- Siehe auch:
-
GENERATE_PROTEIN_ENTITIES
public static final int GENERATE_PROTEIN_ENTITIES- Siehe auch:
-
GENERATE_CELLTYPE_ENTITIES
public static final int GENERATE_CELLTYPE_ENTITIES- Siehe auch:
-
GENERATE_CELLLINE_ENTITIES
public static final int GENERATE_CELLLINE_ENTITIES- Siehe auch:
-
GENERATE_RNA_ENTITIES
public static final int GENERATE_RNA_ENTITIES- Siehe auch:
-
-
Konstruktordetails
-
BioNLP2004NameSampleStream
Initializes aBioNLP2004NameSampleStream
.- Parameter:
in
- TheInputStreamFactory
to use.types
- The types to use.- Löst aus:
IOException
- Thrown if IO errors occurred during initialization.
-
-
Methodendetails
-
read
Beschreibung aus Schnittstelle kopiert:ObjectStream
Returns the nextObjectStream
object. Calling this method repeatedly until it returnsnull
will return each object from the underlying source exactly once.- Angegeben von:
read
in SchnittstelleObjectStream<NameSample>
- Gibt zurück:
- The next object or
null
to signal that the stream is exhausted. - Löst aus:
IOException
- Thrown if there is an error during reading.
-
reset
Beschreibung aus Schnittstelle kopiert:ObjectStream
Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly. This method can be used to re-read the stream if multiple passes over the objects are required.The implementation of this method is optional.
- Angegeben von:
reset
in SchnittstelleObjectStream<NameSample>
- Löst aus:
IOException
- Thrown if there is an error during resetting the stream.UnsupportedOperationException
- Thrown if thereset()
is not supported. By default, this is the case.
-
close
Beschreibung aus Schnittstelle kopiert:ObjectStream
Closes theObjectStream
and releases all allocated resources. After close was called, it's not allowed to callObjectStream.read()
orObjectStream.reset()
.- Angegeben von:
close
in SchnittstelleAutoCloseable
- Angegeben von:
close
in SchnittstelleObjectStream<NameSample>
- Löst aus:
IOException
- Thrown if there is an error during closing the stream.
-