Package opennlp.tools.ml.maxent.io
Class QNModelWriter
- java.lang.Object
-
- opennlp.tools.ml.model.AbstractModelWriter
-
- opennlp.tools.ml.maxent.io.GISModelWriter
-
- opennlp.tools.ml.maxent.io.QNModelWriter
-
- Direct Known Subclasses:
BinaryQNModelWriter
public abstract class QNModelWriter extends GISModelWriter
-
-
Constructor Summary
Constructors Constructor Description QNModelWriter(AbstractModel model)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
persist()
Writes theQN model
, using theAbstractModelWriter.writeUTF(String)
,AbstractModelWriter.writeDouble(double)
, orAbstractModelWriter.writeInt(int)
} methods implemented by extending classes.-
Methods inherited from class opennlp.tools.ml.model.AbstractModelWriter
close, writeDouble, writeInt, writeUTF
-
-
-
-
Constructor Detail
-
QNModelWriter
public QNModelWriter(AbstractModel model)
-
-
Method Detail
-
persist
public void persist() throws IOException
Writes theQN model
, using theAbstractModelWriter.writeUTF(String)
,AbstractModelWriter.writeDouble(double)
, orAbstractModelWriter.writeInt(int)
} methods implemented by extending classes.If you wish to create a
QNModelWriter
which uses a different structure, it will be necessary to override the#persist()
method in addition to implementing thewriteX(..)
methods.- Overrides:
persist
in classGISModelWriter
- Throws:
IOException
- Thrown if IO errors occurred.
-
-