Package opennlp.tools.ml.maxent.io
Klasse BinaryQNModelWriter
java.lang.Object
opennlp.tools.ml.model.AbstractModelWriter
opennlp.tools.ml.AbstractMLModelWriter
opennlp.tools.ml.maxent.io.GISModelWriter
opennlp.tools.ml.maxent.io.QNModelWriter
opennlp.tools.ml.maxent.io.BinaryQNModelWriter
A
QNModelWriter that writes models in a binary format.- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungBinaryQNModelWriter(AbstractModel model, DataOutputStream dos) BinaryQNModelWriter(AbstractModel model, File f) -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidclose()Closes the underlyingDataOutputStream.voidwriteDouble(double d) Writes a singledoubleto the underlyingDataOutputStream.voidwriteInt(int i) Writes a singleintto the underlyingDataOutputStream.voidWrites aStringto the underlyingDataOutputStream.Von Klasse geerbte Methoden opennlp.tools.ml.maxent.io.QNModelWriter
persist
-
Konstruktordetails
-
BinaryQNModelWriter
InstantiatesBinaryQNModelWritervia anQN modeland aFile.Prepares writing of a
modelto the file. Based on whether the file's suffix contains.gz, it detects whether the file is gzipped or not.- Parameter:
model- TheQN modelwhich is to be persisted.f- TheFilein which the model is to be persisted.- Löst aus:
IOException- Thrown if IO errors occurred.- Siehe auch:
-
BinaryQNModelWriter
- Parameter:
model- TheQN modelwhich is to be persisted.dos- TheDataOutputStreamwhich is used to persist themodel. Thedosmust be opened.- Siehe auch:
-
-
Methodendetails
-
writeUTF
Writes aStringto the underlyingDataOutputStream.- Angegeben von:
writeUTFin KlasseAbstractModelWriter- Parameter:
s- TheUTF encodedcharacters.- Löst aus:
IOException- Thrown if IO errors occurred.
-
writeInt
Writes a singleintto the underlyingDataOutputStream.- Angegeben von:
writeIntin KlasseAbstractModelWriter- Parameter:
i- Theintvalue.- Löst aus:
IOException- Thrown if IO errors occurred.
-
writeDouble
Writes a singledoubleto the underlyingDataOutputStream.- Angegeben von:
writeDoublein KlasseAbstractModelWriter- Parameter:
d- Thedoublevalue.- Löst aus:
IOException- Thrown if IO errors occurred.
-
close
Closes the underlyingDataOutputStream.- Angegeben von:
closein KlasseAbstractModelWriter- Löst aus:
IOException- Thrown if IO errors occurred.
-