Uses of Class
opennlp.tools.dictionary.Dictionary

Packages that use Dictionary
opennlp.tools.cmdline.namefind   
opennlp.tools.coref Package related to performing coreference resolution. 
opennlp.tools.dictionary Package related to parsing and storing dictionaries. 
opennlp.tools.namefind Package related to finding proper names and numeric amounts. 
opennlp.tools.ngram Package related to computing and storing n-gram frequencies. 
opennlp.tools.parser Package containing common code for performing full syntactic parsing. 
opennlp.tools.parser.chunking Package containing code for performing full syntactic parsing using shift/reduce-style decisions. 
opennlp.tools.parser.treeinsert Package containing experimental code for performing full syntactic parsing using attachment decisions. 
opennlp.tools.postag Package related to part-of-speech tagging. 
opennlp.tools.sentdetect Package related to identifying sentece boundries. 
opennlp.tools.tokenize Contains classes related to finding token or words in a string. 
opennlp.tools.util.featuregen This package contains classes for generating sequence features. 
 

Uses of Dictionary in opennlp.tools.cmdline.namefind
 

Methods in opennlp.tools.cmdline.namefind that return Dictionary
static Dictionary CensusDictionaryCreatorTool.createDictionary(ObjectStream<StringList> sampleStream)
          Creates a dictionary.
 

Uses of Dictionary in opennlp.tools.coref
 

Methods in opennlp.tools.coref that return Dictionary
 Dictionary CorefModel.getFemaleNames()
           
 Dictionary CorefModel.getMaleNames()
           
 

Uses of Dictionary in opennlp.tools.dictionary
 

Methods in opennlp.tools.dictionary that return Dictionary
static Dictionary Dictionary.parseOneEntryPerLine(Reader in)
          Reads a dictionary which has one entry per line.
 

Uses of Dictionary in opennlp.tools.namefind
 

Constructors in opennlp.tools.namefind with parameters of type Dictionary
DictionaryNameFinder(Dictionary dictionary)
          Initializes the current instance with the provided dictionary.
DictionaryNameFinder(Dictionary dictionary, String type)
          Initialized the current instance with he provided dictionary and a type.
 

Uses of Dictionary in opennlp.tools.ngram
 

Methods in opennlp.tools.ngram that return Dictionary
 Dictionary NGramModel.toDictionary()
          Creates a dictionary which contain all StringList which are in the current NGramModel.
 Dictionary NGramModel.toDictionary(boolean caseSensitive)
          Creates a dictionary which contains all StringLists which are in the current NGramModel.
 

Uses of Dictionary in opennlp.tools.parser
 

Fields in opennlp.tools.parser declared as Dictionary
protected  Dictionary AbstractParserEventStream.dict
           
 

Methods in opennlp.tools.parser that return Dictionary
static Dictionary AbstractBottomUpParser.buildDictionary(ObjectStream<Parse> data, HeadRules rules, int cutoff)
          Creates a n-gram dictionary from the specified data stream using the specified head rule and specified cut-off.
static Dictionary AbstractBottomUpParser.buildDictionary(ObjectStream<Parse> data, HeadRules rules, TrainingParameters params)
          Creates a n-gram dictionary from the specified data stream using the specified head rule and specified cut-off.
 

Constructors in opennlp.tools.parser with parameters of type Dictionary
AbstractParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype, Dictionary dict)
           
 

Uses of Dictionary in opennlp.tools.parser.chunking
 

Constructors in opennlp.tools.parser.chunking with parameters of type Dictionary
BuildContextGenerator(Dictionary dict)
           
ParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype, Dictionary dict)
          Create an event stream based on the specified data stream of the specified type using the specified head rules.
 

Uses of Dictionary in opennlp.tools.parser.treeinsert
 

Constructors in opennlp.tools.parser.treeinsert with parameters of type Dictionary
ParserEventStream(ObjectStream<Parse> d, HeadRules rules, ParserEventTypeEnum etype, Dictionary dict)
           
 

Uses of Dictionary in opennlp.tools.postag
 

Fields in opennlp.tools.postag declared as Dictionary
protected  Dictionary POSTaggerFactory.ngramDictionary
           
protected  Dictionary POSTaggerME.ngramDictionary
           
 

Methods in opennlp.tools.postag that return Dictionary
static Dictionary POSTaggerME.buildNGramDictionary(ObjectStream<POSSample> samples, int cutoff)
           
 Dictionary POSTaggerFactory.getDictionary()
           
 Dictionary POSModel.getNgramDictionary()
          Retrieves the ngram dictionary.
 

Methods in opennlp.tools.postag with parameters of type Dictionary
static POSTaggerFactory POSTaggerFactory.create(String subclassName, Dictionary ngramDictionary, TagDictionary posDictionary)
           
protected  void POSTaggerFactory.init(Dictionary ngramDictionary, TagDictionary posDictionary)
           
 void POSTaggerFactory.setDictionary(Dictionary ngramDict)
           
static POSModel POSTaggerME.train(String languageCode, ObjectStream<POSSample> samples, ModelType modelType, POSDictionary tagDictionary, Dictionary ngramDictionary, int cutoff, int iterations)
          Deprecated. use POSTaggerME.train(String, ObjectStream, TrainingParameters, POSTaggerFactory) instead and pass in a POSTaggerFactory and a TrainingParameters.
static POSModel POSTaggerTrainer.train(String languageCode, ObjectStream<POSSample> samples, POSDictionary tagDictionary, Dictionary ngramDictionary, int cutoff, int iterations)
          Deprecated.  
static POSModel POSTaggerME.train(String languageCode, ObjectStream<POSSample> samples, TrainingParameters trainParams, POSDictionary tagDictionary, Dictionary ngramDictionary)
          Deprecated. use POSTaggerME.train(String, ObjectStream, TrainingParameters, POSTaggerFactory) instead and pass in a POSTaggerFactory.
 

Constructors in opennlp.tools.postag with parameters of type Dictionary
DefaultPOSContextGenerator(Dictionary dict)
          Initializes the current instance.
DefaultPOSContextGenerator(int cacheSize, Dictionary dict)
          Initializes the current instance.
POSModel(String languageCode, opennlp.model.AbstractModel posModel, POSDictionary tagDictionary, Dictionary ngramDict)
          Deprecated. Use POSModel.POSModel(String, AbstractModel, Map, POSTaggerFactory) instead.
POSModel(String languageCode, opennlp.model.AbstractModel posModel, POSDictionary tagDictionary, Dictionary ngramDict, Map<String,String> manifestInfoEntries)
          Deprecated. Use POSModel.POSModel(String, AbstractModel, Map, POSTaggerFactory) instead.
POSTaggerCrossValidator(String languageCode, ModelType modelType, POSDictionary tagDictionary, Dictionary ngramDictionary)
          Deprecated. use POSTaggerCrossValidator.POSTaggerCrossValidator(String, TrainingParameters, POSTaggerFactory, POSTaggerEvaluationMonitor...) instead and pass in a TrainingParameters object and a POSTaggerFactory.
POSTaggerCrossValidator(String languageCode, ModelType modelType, POSDictionary tagDictionary, Dictionary ngramDictionary, int cutoff, int iterations)
          Deprecated. use POSTaggerCrossValidator.POSTaggerCrossValidator(String, TrainingParameters, POSTaggerFactory, POSTaggerEvaluationMonitor...) instead and pass in a TrainingParameters object and a POSTaggerFactory.
POSTaggerCrossValidator(String languageCode, TrainingParameters trainParam, POSDictionary tagDictionary, Dictionary ngramDictionary, POSTaggerEvaluationMonitor... listeners)
          Deprecated. use POSTaggerCrossValidator.POSTaggerCrossValidator(String, TrainingParameters, POSTaggerFactory, POSTaggerEvaluationMonitor...) instead and pass in a POSTaggerFactory.
POSTaggerFactory(Dictionary ngramDictionary, TagDictionary posDictionary)
          Creates a POSTaggerFactory.
POSTaggerME(opennlp.model.AbstractModel model, Dictionary dict)
          Deprecated. 
POSTaggerME(opennlp.model.AbstractModel model, Dictionary dict, TagDictionary tagdict)
          Deprecated. 
 

Uses of Dictionary in opennlp.tools.sentdetect
 

Methods in opennlp.tools.sentdetect that return Dictionary
 Dictionary SentenceDetectorFactory.getAbbreviationDictionary()
           
 Dictionary SentenceModel.getAbbreviations()
           
 

Methods in opennlp.tools.sentdetect with parameters of type Dictionary
static SentenceDetectorFactory SentenceDetectorFactory.create(String subclassName, String languageCode, boolean useTokenEnd, Dictionary abbreviationDictionary, char[] eosCharacters)
           
protected  void SentenceDetectorFactory.init(String languageCode, boolean useTokenEnd, Dictionary abbreviationDictionary, char[] eosCharacters)
           
static SentenceModel SentenceDetectorME.train(String languageCode, ObjectStream<SentenceSample> samples, boolean useTokenEnd, Dictionary abbreviations)
          Deprecated. Use SentenceDetectorME.train(String, ObjectStream, SentenceDetectorFactory, TrainingParameters) and pass in af SentenceDetectorFactory.
static SentenceModel SentenceDetectorME.train(String languageCode, ObjectStream<SentenceSample> samples, boolean useTokenEnd, Dictionary abbreviations, int cutoff, int iterations)
          Deprecated. Use SentenceDetectorME.train(String, ObjectStream, SentenceDetectorFactory, TrainingParameters) and pass in af SentenceDetectorFactory.
static SentenceModel SentenceDetectorME.train(String languageCode, ObjectStream<SentenceSample> samples, boolean useTokenEnd, Dictionary abbreviations, TrainingParameters mlParams)
          Deprecated. Use SentenceDetectorME.train(String, ObjectStream, SentenceDetectorFactory, TrainingParameters) and pass in af SentenceDetectorFactory.
 

Constructors in opennlp.tools.sentdetect with parameters of type Dictionary
SDCrossValidator(String languageCode, int cutoff, int iterations, Dictionary abbreviations)
          Deprecated. use #SDCrossValidator(String, TrainingParameters, Dictionary, SentenceDetectorEvaluationMonitor...) instead and pass in a TrainingParameters object.
SentenceDetectorFactory(String languageCode, boolean useTokenEnd, Dictionary abbreviationDictionary, char[] eosCharacters)
          Creates a SentenceDetectorFactory.
SentenceModel(String languageCode, opennlp.model.AbstractModel sentModel, boolean useTokenEnd, Dictionary abbreviations)
           
SentenceModel(String languageCode, opennlp.model.AbstractModel sentModel, boolean useTokenEnd, Dictionary abbreviations, char[] eosCharacters)
          Deprecated. Use SentenceModel.SentenceModel(String, AbstractModel, Map, SentenceDetectorFactory) instead and pass in a SentenceDetectorFactory
SentenceModel(String languageCode, opennlp.model.AbstractModel sentModel, boolean useTokenEnd, Dictionary abbreviations, char[] eosCharacters, Map<String,String> manifestInfoEntries)
          Deprecated. Use SentenceModel.SentenceModel(String, AbstractModel, Map, SentenceDetectorFactory) instead and pass in a SentenceDetectorFactory
SentenceModel(String languageCode, opennlp.model.AbstractModel sentModel, boolean useTokenEnd, Dictionary abbreviations, Map<String,String> manifestInfoEntries)
           
 

Uses of Dictionary in opennlp.tools.tokenize
 

Methods in opennlp.tools.tokenize that return Dictionary
 Dictionary TokenizerFactory.getAbbreviationDictionary()
          Gets the abbreviation dictionary
 Dictionary TokenizerModel.getAbbreviations()
           
 

Methods in opennlp.tools.tokenize with parameters of type Dictionary
static TokenizerFactory TokenizerFactory.create(String subclassName, String languageCode, Dictionary abbreviationDictionary, boolean useAlphaNumericOptimization, Pattern alphaNumericPattern)
          Factory method the framework uses create a new TokenizerFactory.
protected  void TokenizerFactory.init(String languageCode, Dictionary abbreviationDictionary, boolean useAlphaNumericOptimization, Pattern alphaNumericPattern)
           
static TokenizerModel TokenizerME.train(String languageCode, ObjectStream<TokenSample> samples, Dictionary abbreviations, boolean useAlphaNumericOptimization, TrainingParameters mlParams)
          Deprecated. Use #train(String, ObjectStream, TokenizerFactory, TrainingParameters) and pass in a TokenizerFactory
 

Constructors in opennlp.tools.tokenize with parameters of type Dictionary
TokenizerCrossValidator(String language, Dictionary abbreviations, boolean alphaNumericOptimization, TrainingParameters params, TokenizerEvaluationMonitor... listeners)
          Deprecated. use TokenizerCrossValidator.TokenizerCrossValidator(TrainingParameters, TokenizerFactory, TokenizerEvaluationMonitor...) instead and pass in a TokenizerFactory
TokenizerFactory(String languageCode, Dictionary abbreviationDictionary, boolean useAlphaNumericOptimization, Pattern alphaNumericPattern)
          Creates a TokenizerFactory.
TokenizerModel(String language, opennlp.model.AbstractModel tokenizerMaxentModel, Dictionary abbreviations, boolean useAlphaNumericOptimization, Map<String,String> manifestInfoEntries)
          Deprecated. Use TokenizerModel#TokenizerModel(String, AbstractModel, Map, TokenizerFactory) instead and pass in a TokenizerFactory.
 

Uses of Dictionary in opennlp.tools.util.featuregen
 

Methods in opennlp.tools.util.featuregen with parameters of type Dictionary
 void DictionaryFeatureGenerator.setDictionary(Dictionary dict)
           
 void DictionaryFeatureGenerator.setDictionary(String name, Dictionary dict)
           
 

Constructors in opennlp.tools.util.featuregen with parameters of type Dictionary
DictionaryFeatureGenerator(Dictionary dict)
           
DictionaryFeatureGenerator(String prefix, Dictionary dict)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.