Package aima.core.learning.neural

Examples of aima.core.learning.neural.FeedForwardNeuralNetwork.trainOn()


      config.setConfig(FeedForwardNeuralNetwork.UPPER_LIMIT_WEIGHTS, 2.0);

      FeedForwardNeuralNetwork ffnn = new FeedForwardNeuralNetwork(config);
      ffnn.setTrainingScheme(new BackPropLearning(0.1, 0.9));

      ffnn.trainOn(innds, 10);

      innds.refreshDataset();
      int[] result = ffnn.testOnDataSet(innds);
      System.out.println(result[0] + " right, " + result[1] + " wrong");
    } catch (Exception e) {
View Full Code Here


    config.setConfig(FeedForwardNeuralNetwork.UPPER_LIMIT_WEIGHTS, 2.0);

    FeedForwardNeuralNetwork ffnn = new FeedForwardNeuralNetwork(config);
    ffnn.setTrainingScheme(new BackPropLearning(0.1, 0.9));

    ffnn.trainOn(innds, 10);

    innds.refreshDataset();
    ffnn.testOnDataSet(innds);
  }
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.