Uses of Interface
opennlp.tools.ml.model.DataIndexer
-
Packages that use DataIndexer Package Description opennlp.tools.ml opennlp.tools.ml.maxent Provides main functionality of the maxent package including data structures and algorithms for parameter estimation.opennlp.tools.ml.maxent.quasinewton opennlp.tools.ml.model opennlp.tools.ml.naivebayes opennlp.tools.ml.perceptron -
-
Uses of DataIndexer in opennlp.tools.ml
Methods in opennlp.tools.ml that return DataIndexer Modifier and Type Method Description DataIndexerAbstractEventTrainer. getDataIndexer(ObjectStream<Event> events)Methods in opennlp.tools.ml with parameters of type DataIndexer Modifier and Type Method Description abstract MaxentModelAbstractEventTrainer. doTrain(DataIndexer indexer)MaxentModelAbstractEventTrainer. train(DataIndexer indexer)MaxentModelEventTrainer. train(DataIndexer indexer) -
Uses of DataIndexer in opennlp.tools.ml.maxent
Methods in opennlp.tools.ml.maxent with parameters of type DataIndexer Modifier and Type Method Description MaxentModelGISTrainer. doTrain(DataIndexer indexer)GISModelGISTrainer. trainModel(int iterations, DataIndexer di)Train a model using the GIS algorithm.GISModelGISTrainer. trainModel(int iterations, DataIndexer di, int threads)Train a model using the GIS algorithm.GISModelGISTrainer. trainModel(int iterations, DataIndexer di, Prior modelPrior, int threads)Train a model using the GIS algorithm. -
Uses of DataIndexer in opennlp.tools.ml.maxent.quasinewton
Methods in opennlp.tools.ml.maxent.quasinewton with parameters of type DataIndexer Modifier and Type Method Description AbstractModelQNTrainer. doTrain(DataIndexer indexer)QNModelQNTrainer. trainModel(int iterations, DataIndexer indexer)Constructors in opennlp.tools.ml.maxent.quasinewton with parameters of type DataIndexer Constructor Description NegLogLikelihood(DataIndexer indexer)ParallelNegLogLikelihood(DataIndexer indexer, int threads) -
Uses of DataIndexer in opennlp.tools.ml.model
Classes in opennlp.tools.ml.model that implement DataIndexer Modifier and Type Class Description classAbstractDataIndexerAbstract class for collecting event and context counts used in training.classOnePassDataIndexerAn indexer for maxent model data which handles cutoffs for uncommon contextual predicates and provides a unique integer index for each of the predicates.classOnePassRealValueDataIndexerAn indexer for maxent model data which handles cutoffs for uncommon contextual predicates and provides a unique integer index for each of the predicates and maintains event values.classTwoPassDataIndexerCollecting event and context counts by making two passes over the events.Methods in opennlp.tools.ml.model that return DataIndexer Modifier and Type Method Description static DataIndexerDataIndexerFactory. getDataIndexer(TrainingParameters parameters, Map<String,String> reportMap) -
Uses of DataIndexer in opennlp.tools.ml.naivebayes
Methods in opennlp.tools.ml.naivebayes with parameters of type DataIndexer Modifier and Type Method Description AbstractModelNaiveBayesTrainer. doTrain(DataIndexer indexer)AbstractModelNaiveBayesTrainer. trainModel(DataIndexer di) -
Uses of DataIndexer in opennlp.tools.ml.perceptron
Methods in opennlp.tools.ml.perceptron with parameters of type DataIndexer Modifier and Type Method Description AbstractModelPerceptronTrainer. doTrain(DataIndexer indexer)AbstractModelPerceptronTrainer. trainModel(int iterations, DataIndexer di, int cutoff)AbstractModelPerceptronTrainer. trainModel(int iterations, DataIndexer di, int cutoff, boolean useAverage)
-