opennlp.maxent.io
Class GISModelReader

java.lang.Object
  extended by opennlp.model.AbstractModelReader
      extended by opennlp.maxent.io.GISModelReader
Direct Known Subclasses:
BinaryGISModelReader, ObjectGISModelReader, PlainTextGISModelReader, SuffixSensitiveGISModelReader

public class GISModelReader
extends AbstractModelReader

Abstract parent class for readers of GISModels.


Constructor Summary
GISModelReader(DataReader dataReader)
           
GISModelReader(File file)
           
 
Method Summary
 void checkModelType()
           
 AbstractModel constructModel()
          Retrieve a model from disk.
 
Methods inherited from class opennlp.model.AbstractModelReader
getModel, readDouble, readInt, readUTF
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GISModelReader

public GISModelReader(File file)
               throws IOException
Throws:
IOException

GISModelReader

public GISModelReader(DataReader dataReader)
Method Detail

constructModel

public AbstractModel constructModel()
                             throws IOException
Retrieve a model from disk. It assumes that models are saved in the following sequence:
GIS (model type identifier)
1. # of parameters (int)
2. the correction constant (int)
3. the correction constant parameter (double)
4. # of outcomes (int)
* list of outcome names (String)
5. # of different types of outcome patterns (int)
* list of (int int[])
[# of predicates for which outcome pattern is true] [outcome pattern]
6. # of predicates (int)
* list of predicate names (String)

If you are creating a reader for a format which won't work with this (perhaps a database or xml file), override this method and ignore the other methods provided in this abstract class.

Specified by:
constructModel in class AbstractModelReader
Returns:
The GISModel stored in the format and location specified to this GISModelReader (usually via its the constructor).
Throws:
IOException

checkModelType

public void checkModelType()
                    throws IOException
Specified by:
checkModelType in class AbstractModelReader
Throws:
IOException


Copyright © 2011 The Apache Software Foundation. All Rights Reserved.