|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use GISModel | |
---|---|
opennlp.maxent | Provides main functionality of the maxent package including data structures and algorithms for parameter estimation. |
opennlp.maxent.io | Provides the I/O functionality of the maxent package including reading and writting models in several formats. |
Uses of GISModel in opennlp.maxent |
---|
Methods in opennlp.maxent that return GISModel | |
---|---|
static GISModel |
GIS.trainModel(EventStream eventStream)
Train a model using the GIS algorithm, assuming 100 iterations and no cutoff. |
static GISModel |
GIS.trainModel(EventStream eventStream,
boolean smoothing)
Train a model using the GIS algorithm, assuming 100 iterations and no cutoff. |
static GISModel |
GIS.trainModel(EventStream eventStream,
int iterations,
int cutoff)
Train a model using the GIS algorithm. |
static GISModel |
GIS.trainModel(EventStream eventStream,
int iterations,
int cutoff,
boolean smoothing,
boolean printMessagesWhileTraining)
Train a model using the GIS algorithm. |
static GISModel |
GIS.trainModel(int iterations,
DataIndexer indexer)
Train a model using the GIS algorithm. |
static GISModel |
GIS.trainModel(int iterations,
DataIndexer indexer,
boolean smoothing)
Train a model using the GIS algorithm. |
static GISModel |
GIS.trainModel(int iterations,
DataIndexer indexer,
boolean printMessagesWhileTraining,
boolean smoothing,
Prior modelPrior,
int cutoff)
Train a model using the GIS algorithm. |
static GISModel |
GIS.trainModel(int iterations,
DataIndexer indexer,
Prior modelPrior,
int cutoff)
Train a model using the GIS algorithm with the specified number of iterations, data indexer, and prior. |
Uses of GISModel in opennlp.maxent.io |
---|
Methods in opennlp.maxent.io that return GISModel | |
---|---|
GISModel |
GISModelReader.getModel()
Retrieve a model from disk. |
Constructors in opennlp.maxent.io with parameters of type GISModel | |
---|---|
BinaryGISModelWriter(GISModel model,
java.io.DataOutputStream dos)
Constructor which takes a GISModel and a DataOutputStream and prepares itself to write the model to that stream. |
|
BinaryGISModelWriter(GISModel model,
java.io.File f)
Constructor which takes a GISModel and a File and prepares itself to write the model to that file. |
|
GISModelWriter(GISModel model)
|
|
ObjectGISModelWriter(GISModel model,
java.io.ObjectOutputStream dos)
Constructor which takes a GISModel and a ObjectOutputStream and prepares itself to write the model to that stream. |
|
PlainTextGISModelWriter(GISModel model,
java.io.BufferedWriter bw)
Constructor which takes a GISModel and a BufferedWriter and prepares itself to write the model to that writer. |
|
PlainTextGISModelWriter(GISModel model,
java.io.File f)
Constructor which takes a GISModel and a File and prepares itself to write the model to that file. |
|
SuffixSensitiveGISModelWriter(GISModel model,
java.io.File f)
Constructor which takes a GISModel and a File and invokes the GISModelWriter appropriate for the suffix. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |