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

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


    }
   
    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

TOP

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

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.