Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV LETTER
NEXT LETTER
FRAMES
NO FRAMES
All Classes
A
B
C
D
E
F
G
H
I
K
L
M
N
O
P
R
S
T
U
V
W
G
get(int)
- Method in class opennlp.maxent.
IntegerPool
Returns the shared Integer wrapper for
value
if it is inside the range managed by this pool.
get(int)
- Method in class opennlp.maxent.
TIntParamHashMap
get(Object)
- Method in class opennlp.maxent.
TObjectIndexHashMap
getAllOutcomes(double[])
- Method in class opennlp.maxent.
GISModel
Return a string matching all the outcome names with all the probabilities produced by the
eval(String[] context)
method.
getAllOutcomes(double[])
- Method in interface opennlp.maxent.
MaxentModel
Return a string matching all the outcome names with all the probabilities produced by the
eval(String[] context)
method.
getBestOutcome(double[])
- Method in class opennlp.maxent.
GISModel
Return the name of the outcome corresponding to the highest likelihood in the parameter ocs.
getBestOutcome(double[])
- Method in interface opennlp.maxent.
MaxentModel
Simple function to return the outcome associated with the index containing the highest probability in the double[].
getContext(Object)
- Method in class opennlp.maxent.
BasicContextGenerator
Builds up the list of contextual predicates given a String.
getContext(Object)
- Method in interface opennlp.maxent.
ContextGenerator
Builds up the list of contextual predicates given an Object.
getContext()
- Method in class opennlp.maxent.
Event
getContexts()
- Method in class opennlp.maxent.
AbstractDataIndexer
getContexts()
- Method in interface opennlp.maxent.
DataIndexer
Returns the array of predicates seen in each event.
getCorrectionConstant()
- Method in class opennlp.maxent.io.
GISModelReader
getCorrectionParameter()
- Method in class opennlp.maxent.io.
GISModelReader
getDataStructures()
- Method in class opennlp.maxent.
GISModel
Provides the fundamental data structures which encode the maxent model information.
getDataStructures()
- Method in interface opennlp.maxent.
MaxentModel
Returns the data structures relevant to storing the model.
getEventCollector(Reader)
- Method in interface opennlp.maxent.
Evalable
Returns the EventCollector that is used to collect all relevant information from the data file.
getEvents()
- Method in interface opennlp.maxent.
EventCollector
Return the events which this EventCollector has gathered.
getEvents(boolean)
- Method in interface opennlp.maxent.
EventCollector
Return the events which this EventCollector has gathered based on whether we wish to train a model or evaluate one based on those events.
getIndex(String)
- Method in class opennlp.maxent.
GISModel
Gets the index associated with the String name of the given outcome.
getIndex(String)
- Method in interface opennlp.maxent.
MaxentModel
Gets the index associated with the String name of the given outcome.
getModel(ModelDomain)
- Method in class opennlp.maxent.
DomainToModelMap
Get the model mapped to by the given ModelDomain key.
getModel()
- Method in class opennlp.maxent.io.
GISModelReader
Retrieve a model from disk.
getName()
- Method in interface opennlp.maxent.
ModelDomain
Get the name of this domain.
getNegativeOutcome()
- Method in interface opennlp.maxent.
Evalable
The outcome that should be considered a negative result.
getNumOutcomes()
- Method in class opennlp.maxent.
GISModel
getNumOutcomes()
- Method in interface opennlp.maxent.
MaxentModel
Returns the number of outcomes for this model.
getNumTimesEventsSeen()
- Method in class opennlp.maxent.
AbstractDataIndexer
getNumTimesEventsSeen()
- Method in interface opennlp.maxent.
DataIndexer
Returns an array indicating the number of times a particular event was seen.
getOutcome()
- Method in class opennlp.maxent.
Event
getOutcome(int)
- Method in class opennlp.maxent.
GISModel
Return the name of an outcome corresponding to an int id.
getOutcome(int)
- Method in interface opennlp.maxent.
MaxentModel
Gets the String name of the outcome associated with the index i.
getOutcomeLabels()
- Method in class opennlp.maxent.
AbstractDataIndexer
getOutcomeLabels()
- Method in interface opennlp.maxent.
DataIndexer
Returns an array of outcome names.
getOutcomeList()
- Method in class opennlp.maxent.
AbstractDataIndexer
getOutcomeList()
- Method in interface opennlp.maxent.
DataIndexer
Returns an array indicating the outcome index for each event.
getOutcomePatterns()
- Method in class opennlp.maxent.io.
GISModelReader
getOutcomes()
- Method in class opennlp.maxent.
Context
Returns the outcomes for which parameters exists for this context.
getOutcomes()
- Method in class opennlp.maxent.io.
GISModelReader
getParameters()
- Method in class opennlp.maxent.
Context
Returns the paramaters or expected values for the outcomes which occur with this context.
getParameters(int[][])
- Method in class opennlp.maxent.io.
GISModelReader
Reads the parameters from a file and populates an array of context objects.
getParameters(int[][])
- Method in class opennlp.maxent.io.
OldFormatGISModelReader
Reads the parameters from a file and populates an array of context objects.
getPredCounts()
- Method in class opennlp.maxent.
AbstractDataIndexer
getPredCounts()
- Method in interface opennlp.maxent.
DataIndexer
Returns an array of the count of each predicate in the events.
getPredicates()
- Method in class opennlp.maxent.io.
GISModelReader
getPredLabels()
- Method in class opennlp.maxent.
AbstractDataIndexer
getPredLabels()
- Method in interface opennlp.maxent.
DataIndexer
Returns an array of predicate/context names.
getValues()
- Method in class opennlp.maxent.
AbstractDataIndexer
getValues()
- Method in interface opennlp.maxent.
DataIndexer
Returns the values associated with each event context or null if integer values are to be used.
getValues()
- Method in class opennlp.maxent.
Event
getValues()
- Method in class opennlp.maxent.
OnePassRealValueDataIndexer
GIS
- Class in
opennlp.maxent
A Factory class which uses instances of GISTrainer to create and train GISModels.
GIS()
- Constructor for class opennlp.maxent.
GIS
GISModel
- Class in
opennlp.maxent
A maximum entropy model which has been trained using the Generalized Iterative Scaling procedure (implemented in GIS.java).
GISModel(Context[], String[], String[], int, double)
- Constructor for class opennlp.maxent.
GISModel
Creates a new model with the specified parameters, outcome names, and predicate/feature labels.
GISModel(Context[], String[], String[], int, double, Prior)
- Constructor for class opennlp.maxent.
GISModel
Creates a new model with the specified parameters, outcome names, and predicate/feature labels.
GISModelReader
- Class in
opennlp.maxent.io
Abstract parent class for readers of GISModels.
GISModelReader()
- Constructor for class opennlp.maxent.io.
GISModelReader
GISModelWriter
- Class in
opennlp.maxent.io
Abstract parent class for GISModel writers.
GISModelWriter(GISModel)
- Constructor for class opennlp.maxent.io.
GISModelWriter
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV LETTER
NEXT LETTER
FRAMES
NO FRAMES
All Classes
A
B
C
D
E
F
G
H
I
K
L
M
N
O
P
R
S
T
U
V
W
Copyright © 2005 Jason Baldridge, Gann Bierner, and Thomas Morton. All Rights Reserved.