Hello everybody,
today I want to share few words about my learning of Encog.
Let's say you have array of 15 doubles:
double []s = new double[15];
Then for simple case you can use BasciMLData class:
IMLData data = new BasicMLData(s);
Now data can be used to feed data to any neural network.&n...