c.setConfValue("neuronType", Neuron.class);
c.setConfValue("networkType", NeuralNetwork.NetworkType.MULTI_LAYER_PERCEPTRON);
c.setConfValue("layerNeuronCounts", this.layerNeuronCounts );
c.parse(null);
this.nn = new MultiLayerPerceptronNetwork();
try {
this.nn.buildFromConf(c);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();