Class ParallelNegLogLikelihood
- java.lang.Object
-
- opennlp.tools.ml.maxent.quasinewton.NegLogLikelihood
-
- opennlp.tools.ml.maxent.quasinewton.ParallelNegLogLikelihood
-
- All Implemented Interfaces:
Function
public class ParallelNegLogLikelihood extends NegLogLikelihood
Evaluate negative log-likelihood and its gradient in parallel
-
-
Constructor Summary
Constructors Constructor Description ParallelNegLogLikelihood(DataIndexer indexer, int threads)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
gradientAt(double[] x)
Computes the gradient.double
valueAt(double[] x)
Computes the negative log-likelihood.-
Methods inherited from class opennlp.tools.ml.maxent.quasinewton.NegLogLikelihood
getDimension, getInitialPoint
-
-
-
-
Constructor Detail
-
ParallelNegLogLikelihood
public ParallelNegLogLikelihood(DataIndexer indexer, int threads)
- Parameters:
indexer
- TheDataIndexer
to use as input provider.threads
- The number of thread to compute with in parallel. Must be greater than0
.- Throws:
IllegalArgumentException
- Thrown if parameters were invalid.
-
-
Method Detail
-
valueAt
public double valueAt(double[] x)
Computes the negative log-likelihood.- Specified by:
valueAt
in interfaceFunction
- Overrides:
valueAt
in classNegLogLikelihood
- Parameters:
x
- The input.- Returns:
- Returns the computed negative log-likelihood.
- Throws:
IllegalArgumentException
- Thrown if parameters were invalid.
-
gradientAt
public double[] gradientAt(double[] x)
Computes the gradient.- Specified by:
gradientAt
in interfaceFunction
- Overrides:
gradientAt
in classNegLogLikelihood
- Parameters:
x
- The input.- Returns:
- Returns the computed gradient.
- Throws:
IllegalArgumentException
- Thrown if parameters were invalid.
-
-