/* * Encog(tm) Java Examples v3.4 * http://www.heatonresearch.com/encog/ * https://github.com/encog/encog-java-examples * * Copyright 2008-2016 Heaton Research, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * For more information on Heaton Research copyrights, licenses * and trademarks visit: * http://www.heatonresearch.com/copyright */ package org.encog.examples.neural.recurrent.jordan; import org.encog.Encog; import org.encog.engine.network.activation.ActivationSigmoid; import org.encog.examples.neural.util.TemporalXOR; import org.encog.ml.CalculateScore; import org.encog.ml.data.MLDataSet; import org.encog.ml.train.MLTrain; import org.encog.ml.train.strategy.Greedy; import org.encog.ml.train.strategy.HybridStrategy; import org.encog.ml.train.strategy.StopTrainingStrategy; import org.encog.neural.networks.BasicNetwork; import org.encog.neural.networks.training.TrainingSetScore; import org.encog.neural.networks.training.anneal.NeuralSimulatedAnnealing; import org.encog.neural.networks.training.propagation.back.Backpropagation; import org.encog.neural.pattern.FeedForwardPattern; import org.encog.neural.pattern.JordanPattern; /** * Implement an Jordan style neural network with Encog. This network attempts to * predict the next value in an XOR sequence, taken one at a time. A regular * feedforward network would fail using a single input neuron for this task. The * internal state stored by an Jordan neural network allows better performance. * * This example does not perform very well and is provided mainly as a contrast to * the ExlmanXOR. There is only one context neuron, because there is only one output * neuron. This network does not perform as well as the Elman for XOR. * * Jordan is better suited to a larger array of output neurons. * */ public class JordanXOR { static BasicNetwork createJordanNetwork() { // construct an Jordan type network JordanPattern pattern = new JordanPattern(); pattern.setActivationFunction(new ActivationSigmoid()); pattern.setInputNeurons(1); pattern.addHiddenLayer(2); pattern.setOutputNeurons(1); return (BasicNetwork)pattern.generate(); } static BasicNetwork createFeedforwardNetwork() { // construct a feedforward type network FeedForwardPattern pattern = new FeedForwardPattern(); pattern.setActivationFunction(new ActivationSigmoid()); pattern.setInputNeurons(1); pattern.addHiddenLayer(2); pattern.setOutputNeurons(1); return (BasicNetwork)pattern.generate(); } public static void main(final String args[]) { final TemporalXOR temp = new TemporalXOR(); final MLDataSet trainingSet = temp.generate(120); final BasicNetwork jordanNetwork = JordanXOR.createJordanNetwork(); final BasicNetwork feedforwardNetwork = JordanXOR .createFeedforwardNetwork(); final double jordanError = JordanXOR.trainNetwork("Jordan", jordanNetwork, trainingSet); final double feedforwardError = JordanXOR.trainNetwork("Feedforward", feedforwardNetwork, trainingSet); System.out.println("Best error rate with Jordan Network: " + jordanError); System.out.println("Best error rate with Feedforward Network: " + feedforwardError); System.out .println("Jordan will perform only marginally better than feedforward.\nThe more output neurons, the better performance a Jordan will give."); Encog.getInstance().shutdown(); } public static double trainNetwork(final String what, final BasicNetwork network, final MLDataSet trainingSet) { // train the neural network CalculateScore score = new TrainingSetScore(trainingSet); final MLTrain trainAlt = new NeuralSimulatedAnnealing( network, score, 10, 2, 100); final MLTrain trainMain = new Backpropagation(network, trainingSet,0.00001, 0.0); final StopTrainingStrategy stop = new StopTrainingStrategy(); trainMain.addStrategy(new Greedy()); trainMain.addStrategy(new HybridStrategy(trainAlt)); //trainMain.addStrategy(stop); int epoch = 0; while (!stop.shouldStop()) { trainMain.iteration(); System.out.println("Training " + what + ", Epoch #" + epoch + " Error:" + trainMain.getError()); epoch++; } return trainMain.getError(); } }