Package org.encog.neural.som.training.clustercopy

Examples of org.encog.neural.som.training.clustercopy.SOMClusterCopyTraining.iteration()


      SOMClusterCopyTraining train = new SOMClusterCopyTraining(this.net,trainingSet);
           
      int tries = 1;
      while (!this.halt) {
        train.iteration();
        update(tries++, train.getError());
      }

      markStopped();
      this.halt = false;
View Full Code Here


        startup(file, train, somDialog.getMaxError().getValue() / 100.0);
      }
    } else if (sel.getSelected() == selectSOMClusterCopy) {
      SOMClusterCopyTraining train = new SOMClusterCopyTraining(
          (SOM) file.getObject(), trainingData);
      train.iteration();
      if (EncogWorkBench.askQuestion("SOM", "Training done, save?")) {
        file.save();
      } else {
        file.revert();
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.