Package | Description |
---|---|
opennlp.tools.ml.maxent |
Provides main functionality of the maxent package including data structures and
algorithms for parameter estimation.
|
opennlp.tools.ml.model | |
opennlp.tools.ml.naivebayes | |
opennlp.tools.ml.perceptron |
Modifier and Type | Method and Description |
---|---|
static double[] |
GISModel.eval(int[] context,
double[] prior,
EvalParameters model)
Use this model to evaluate a context and return an array of the likelihood
of each outcome given the specified context and the specified parameters.
|
static double[] |
GISModel.eval(int[] context,
float[] values,
double[] prior,
EvalParameters model)
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
protected EvalParameters |
AbstractModel.evalParams
Parameters for the model.
|
Modifier and Type | Class and Description |
---|---|
class |
NaiveBayesEvalParameters
Parameters for the evalution of a naive bayes classifier
|
Modifier and Type | Method and Description |
---|---|
static double[] |
NaiveBayesModel.eval(int[] context,
double[] prior,
EvalParameters model) |
static double[] |
NaiveBayesModel.eval(int[] context,
float[] values,
double[] prior,
EvalParameters model,
boolean normalize)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static double[] |
PerceptronModel.eval(int[] context,
double[] prior,
EvalParameters model) |
static double[] |
PerceptronModel.eval(int[] context,
float[] values,
double[] prior,
EvalParameters model,
boolean normalize)
Deprecated.
|
Copyright © 2017 The Apache Software Foundation. All rights reserved.