Package org.encog.ml.bayesian.training.estimator

Examples of org.encog.ml.bayesian.training.estimator.SimpleEstimator


    else {
      throw new BayesianError("Invalid search type: " + searchStr);
    }
   
    if( estimatorStr.equalsIgnoreCase("simple")) {
      estimator = new SimpleEstimator();
    } else if( estimatorStr.equalsIgnoreCase("none")) {
      estimator = new EstimatorNone();
    }
    else {
      throw new BayesianError("Invalid estimator type: " + estimatorStr);
View Full Code Here


   */
  public TrainBayesian(BayesianNetwork theNetwork, MLDataSet theData,
      int theMaximumParents) {
    this(theNetwork, theData, theMaximumParents,
        BayesianInit.InitNaiveBayes, new SearchK2(),
        new SimpleEstimator());
  }
View Full Code Here

TOP

Related Classes of org.encog.ml.bayesian.training.estimator.SimpleEstimator

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.