Package org.dbpedia.spotlight.spot.cooccurrence.weka.ukwac

Examples of org.dbpedia.spotlight.spot.cooccurrence.weka.ukwac.InstanceBuilderUnigramUKWAC


  public static InstanceBuilder createInstanceBuilderUnigram(String dataSource,
                                 OccurrenceDataProvider dataProvider)
      throws InitializationException {

    if(dataSource.toLowerCase().equals(UKWAC)) {
      return new InstanceBuilderUnigramUKWAC(dataProvider);
    }else if(dataSource.toLowerCase().equals(GOOGLE_NGRAM)){
      return new InstanceBuilderUnigramGoogle(dataProvider);
    }else{
      throw new InitializationException("No known occurrence data source found. Please check " +
          "org.dbpedia.spotlight.spot.cooccurrence.datasource in the configuration file.");
View Full Code Here

TOP

Related Classes of org.dbpedia.spotlight.spot.cooccurrence.weka.ukwac.InstanceBuilderUnigramUKWAC

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.