Package org.neuroph.core.learning

Examples of org.neuroph.core.learning.TrainingData


  /**
   * Creates an instance of connection weight with random weight value in range [0..1]
   */
  public Weight() {
    this.value = Math.random() - 0.5d;
                this.trainingData = new TrainingData(2);
  }
View Full Code Here


   * @param value
   *            weight value
   */
  public Weight(double value) {
    this.value = value;
                 this.trainingData = new TrainingData(2);
  }
View Full Code Here

         * Initialize training data buffer to specified size
         * @param size size of the training buffer (number of variables used by
         * the learning rule)
         */
        public void initTrainingDataBuffer(int size) {
            this.trainingData = new TrainingData(size);
        }
View Full Code Here

TOP

Related Classes of org.neuroph.core.learning.TrainingData

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.