Package org.encog.neural.networks.training.propagation

Examples of org.encog.neural.networks.training.propagation.Propagation


  /**
   * {@inheritDoc}
   */
  @Override
  public void createTrainer(final boolean singleThreaded) {
    final Propagation train = new Backpropagation(getNetwork(),
        getTraining(), getLearningRate(), getMomentum());

    if (singleThreaded) {
      train.setThreadCount(1);
    } else {
      train.setThreadCount(0);
    }

    for (final Strategy strategy : getStrategies()) {
      train.addStrategy(strategy);
    }

    setTrain(train);
  }
View Full Code Here

TOP

Related Classes of org.encog.neural.networks.training.propagation.Propagation

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.