Package com.greentea.relaxation.algorithms.cascor

Examples of com.greentea.relaxation.algorithms.cascor.CasCorAlgorithm


class CasCorAlgorithmFactory implements IAlgorithmFactory
{
   @Override
   public LearningAlgorithm createAlgorithm()
   {
      CasCorAlgorithm casCor = new CasCorAlgorithm();
      casCor.setLog(null);

      casCor.setLearningData(getLearningData());
      casCor.setTestData(getTestData());

      casCor.setLearningOutputsAlgorithm(LearningOutputsAlgorithm.QUICK_PROPAGATION);
      Parameter param =
              ParametersUtils.find(casCor, CasCorAlgorithm.LEARNING_OUTPUTS_ALGORITHM_PARAMETER);
      param.setFreeze(true);

      casCor.setLogEnabled(false);

      return casCor;
   }
View Full Code Here


      possibleAlgorithms.put(AlgorithmId.CasCor, new IAlgorithmFactory()
      {
         public LearningAlgorithm createAlgorithm()
         {
            return new CasCorAlgorithm();
         }
      });
      possibleAlgorithms.put(AlgorithmId.PNN, new IAlgorithmFactory()
      {
         public LearningAlgorithm createAlgorithm()
View Full Code Here

TOP

Related Classes of com.greentea.relaxation.algorithms.cascor.CasCorAlgorithm

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.