Package distributedRedditAnalyser

Examples of distributedRedditAnalyser.OzaBoost


  private OutputCollector collector;
  private InstancesHeader INST_HEADERS;
 
  public DistributedOzaBoostBolt(String classifierName, int id){
    this.id = id;
    classifier = new OzaBoost();
    classifier.baseLearnerOption = new ClassOption("baseLearner", 'l',"Classifier to train.",Classifier.class, classifierName);
    classifier.ensembleSizeOption.setValue(50);
    classifier.prepareForUse();
  }
View Full Code Here

TOP

Related Classes of distributedRedditAnalyser.OzaBoost

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.