Package opennlp.tools.ml.model
Class AbstractModelReader
- java.lang.Object
-
- opennlp.tools.ml.model.AbstractModelReader
-
- Direct Known Subclasses:
GenericModelReader
,GISModelReader
,NaiveBayesModelReader
,PerceptronModelReader
public abstract class AbstractModelReader extends Object
An abstract, basic implementation of a model reader.
-
-
Constructor Summary
Constructors Constructor Description AbstractModelReader(File f)
Initializes aAbstractModelReader
via aFile
.AbstractModelReader(DataReader dataReader)
Initializes aAbstractModelReader
via aDataReader
.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
checkModelType()
Checks the model type via the the underlyingDataReader
.abstract AbstractModel
constructModel()
Constructs amodel
.AbstractModel
getModel()
double
readDouble()
Implement as needed for the format the model is stored in.int
readInt()
Implement as needed for the format the model is stored in.String
readUTF()
Implement as needed for the format the model is stored in.
-
-
-
Constructor Detail
-
AbstractModelReader
public AbstractModelReader(File f) throws IOException
Initializes aAbstractModelReader
via aFile
.- Parameters:
f
- TheFile
that references the model to be read.- Throws:
IOException
- Thrown if IO errors occurred.
-
AbstractModelReader
public AbstractModelReader(DataReader dataReader)
Initializes aAbstractModelReader
via aDataReader
.- Parameters:
dataReader
- TheDataReader
that references the model to be read.
-
-
Method Detail
-
readInt
public int readInt() throws IOException
Implement as needed for the format the model is stored in.- Returns:
- Reads in an
int
value from the underlyingDataReader
. - Throws:
IOException
-
readDouble
public double readDouble() throws IOException
Implement as needed for the format the model is stored in.- Returns:
- Reads in a
double
value from the underlyingDataReader
. - Throws:
IOException
-
readUTF
public String readUTF() throws IOException
Implement as needed for the format the model is stored in.- Returns:
- Reads in an
UTF-encoded String
value from the underlyingDataReader
. - Throws:
IOException
-
getModel
public AbstractModel getModel() throws IOException
- Returns:
- Retrieves the read
AbstractModel
instance. - Throws:
IOException
- Thrown if IO errors occurred constructing the model.
-
checkModelType
public abstract void checkModelType() throws IOException
Checks the model type via the the underlyingDataReader
.- Throws:
IOException
- Thrown if IO errors occurred checking the model type.
-
constructModel
public abstract AbstractModel constructModel() throws IOException
Constructs amodel
.- Returns:
- A
AbstractModel
reconstructed from a model's (read) attributes. - Throws:
IOException
- Thrown if IO errors occurred during (re-)construction.
-
-