Package cc.mallet.classify

Examples of cc.mallet.classify.BalancedWinnowTrainer


   
    public TokenClassifiers(InstanceList trainList, int randSeed, int numCV)
    {
//      this(new AdaBoostM2Trainer(new DecisionTreeTrainer(2), 10), trainList, randSeed, numCV);
//      this(new NaiveBayesTrainer(), trainList, randSeed, numCV);
      this(new BalancedWinnowTrainer(), trainList, randSeed, numCV);
//      this(new SVMTrainer(), trainList, randSeed, numCV);
    }
View Full Code Here

TOP

Related Classes of cc.mallet.classify.BalancedWinnowTrainer

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.