// train the neural network
EncogUtility.trainConsole( jordanNetwork, trainingSet, 1);
EncogUtility.trainConsole( ffNetwork, trainingSet, 1);
System.out.println("Final Jordan Error: " + Format.formatPercent(jordanNetwork.calculateError(trainingSet)));
System.out.println("Final Feedforwd Error: " + Format.formatPercent(jordanNetwork.calculateError(trainingSet)));
System.out.println("However, the error rate can be misleading. Consider the evaluations of each network.");
System.out.println("Feedforward Evaluation:");
EncogUtility.evaluate(ffNetwork, trainingSet);