Package org.encog.neural.freeform.task

Examples of org.encog.neural.freeform.task.ConnectionTask


        seed);

    /**
     * {@inheritDoc}
     */
    performConnectionTask(new ConnectionTask() {
      @Override
      public void task(final FreeformConnection connection) {
        connection.setWeight(randomizer.nextDouble());
      }
    });
View Full Code Here


 
  /**
   * Learn for the entire network.
   */
  protected void learn() {
    this.network.performConnectionTask(new ConnectionTask() {
      @Override
      public void task(final FreeformConnection connection) {
        learnConnection(connection);
        connection.setTempTraining(0, 0);
      }
View Full Code Here

      final MLDataSet theTraining, final double initialUpdate,
      final double theMaxStep) {
    super(theNetwork, theTraining);
    this.maxStep = theMaxStep;
    theNetwork.tempTrainingAllocate(1, 4);
    theNetwork.performConnectionTask(new ConnectionTask() {
      @Override
      public void task(final FreeformConnection c) {
        c.setTempTraining(FreeformResilientPropagation.TEMP_UPDATE,
            initialUpdate);
      }
View Full Code Here

TOP

Related Classes of org.encog.neural.freeform.task.ConnectionTask

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.