Package opennlp.tools.ml.model
Klasse RealValueFileEventStream
java.lang.Object
opennlp.tools.ml.model.FileEventStream
opennlp.tools.ml.model.RealValueFileEventStream
- Alle implementierten Schnittstellen:
AutoCloseable,ObjectStream<Event>
Class for using a file of real-valued
events as an
event stream.
The format of the file is one event per line with
each line consisting of outcome followed by contexts (space delimited).- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungRealValueFileEventStream(File file) Instantiates aRealValueFileEventStreamvia aFile.RealValueFileEventStream(Reader reader) Instantiates aRealValueFileEventStreamvia aReader.RealValueFileEventStream(String fileName) Instantiates aRealValueFileEventStreamfrom the specified file name.RealValueFileEventStream(String fileName, String encoding) Instantiates aRealValueFileEventStreamfrom the specified file name. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic float[]parseContexts(String[] contexts) Parses the specifiedcontextsand re-populates context array with features and returns the values for these features.read()Returns the nextEventobject.Von Klasse geerbte Methoden opennlp.tools.ml.model.FileEventStream
close, reset, toLine
-
Konstruktordetails
-
RealValueFileEventStream
Instantiates aRealValueFileEventStreamfrom the specified file name.- Parameter:
fileName- The name fo the file containing the events.- Löst aus:
IOException- Thrown if the specified file can not be read.
-
RealValueFileEventStream
Instantiates aRealValueFileEventStreamfrom the specified file name.- Parameter:
fileName- The name fo the file containing the events.encoding- The name of thecharacter encoding.- Löst aus:
IOException- Thrown if the specified file can not be read.
-
RealValueFileEventStream
Instantiates aRealValueFileEventStreamvia aFile.- Parameter:
file- TheFilethat holds events.- Löst aus:
IOException- Thrown if the specified file can not be read.
-
RealValueFileEventStream
Instantiates aRealValueFileEventStreamvia aReader.- Parameter:
reader- TheReaderthat holds events.- Löst aus:
IOException- Thrown if the specified file can not be read.
-
-
Methodendetails
-
parseContexts
Parses the specifiedcontextsand re-populates context array with features and returns the values for these features. If all values are unspecified, thennullis returned.- Parameter:
contexts- The contexts with real values specified.- Gibt zurück:
- The value for each context or
nullif all values are unspecified. - Löst aus:
RuntimeException- Thrown if negative real values are detected in the input data.
-
read
Returns the nextEventobject. Calling this method repeatedly until it returnsnullwill return each object from the underlying source exactly once.- Angegeben von:
readin SchnittstelleObjectStream<Event>- Setzt außer Kraft:
readin KlasseFileEventStream- Gibt zurück:
- The next object or
nullto signal that the stream is exhausted. - Löst aus:
IOException- Thrown if there is an error during reading.RuntimeException- Thrown if negative real values are detected in the input data.
-