Package opennlp.tools.util

Examples of opennlp.tools.util.CountedNumberedSet


   * @param cutoff The number of times an n-gram needs to occur to be saved.
   */
  public MutableDictionary(int cutoff) {
    super();
    this.cutoff = cutoff;
    wordMap = new CountedNumberedSet();
    nGramFactory = new NGramFactory(wordMap);
    gramSet = new CountedSet();
    wordCounts = new ArrayList();
  }
View Full Code Here

TOP

Related Classes of opennlp.tools.util.CountedNumberedSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.