I am trying to feed some input (IP) v/s ideal (ID) data to encog neural network (BasicNetwork class). All the tutorials show the input format (MLData) to be like this:
IP11,IP12,IP13 ID11,ID12
IP21,IP22,IP23 ID21,ID22
some more values...
But I want to feed the data like this:
IP11,IP12,IP13
IP21,IP22,IP23 ID11,ID12
IP11,IP12,IP13
IP21,IP22,IP23 ID21,ID22
Basically I intend to associate a matrix of input values with an array of ideal values. Is there a way to do that using the encog framework?
Eagerly awaiting reply.