public class TrainComplete extends TestCase {
public void testCompleteTrain()
{
MLDataSet trainingData = new BasicMLDataSet(XOR.XOR_INPUT,XOR.XOR_IDEAL);
BasicNetwork network = EncogUtility.simpleFeedForward(2, 5, 7, 1, true);
Randomizer randomizer = new ConsistentRandomizer(-1, 1, 19);
//randomizer.randomize(network);
System.out.println(network.dumpWeights());