Package classification

Examples of classification.NaiveBayes.batchTrain()


  }

  public static LinearClassifier trainNaivBayes(
      ArrayList<ClassificationInstance> train, Alphabet xA, Alphabet yA) {
    NaiveBayes nb = new NaiveBayes(0.1, 0.1, xA, yA);
    LinearClassifier h = nb.batchTrain(train);
    return h;
  }

  public static LinearClassifier trainPerceptron(boolean doAveraging,
      int numIters, ArrayList<ClassificationInstance> train, Alphabet xA,
View Full Code Here


  }

  public static LinearClassifier trainNaivBayes(
      ArrayList<ClassificationInstance> train, Alphabet xA, Alphabet yA) {
    NaiveBayes nb = new NaiveBayes(0.1, 0.1, xA, yA);
    LinearClassifier h = nb.batchTrain(train);
    return h;
  }

  public static LinearClassifier trainPerceptron(boolean doAveraging,
      int numIters, ArrayList<ClassificationInstance> train, Alphabet xA,
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.