Package org.apache.ctakes.utils.wiki

Examples of org.apache.ctakes.utils.wiki.WikiIndex


  static final int NUM_WIKI_HITS = 5;
 
  public SvmVectorCreator(HashSet<String> stopwords){
    this.stopwords = stopwords;
    try{
      wiki = new WikiIndex(NUM_WIKI_HITS, FileLocator.locateFile("org/apache/ctakes/coreference/models/index_med_5k").getAbsolutePath(), "text");
      wiki.initialize();
    }catch(IOException e){
      e.printStackTrace();
      wiki = null;
    }
View Full Code Here

TOP

Related Classes of org.apache.ctakes.utils.wiki.WikiIndex

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.