I have a number of records where I am trying to predict one field based on other fields. I set up a FANN neural net under Python, with ~10 inputs, 100 hidden nodes, and 2 outputs.
When I went to build the nets, with 1000+ records, they went down within a few thousand epochs to an error of about 60, but didn't go down any further; often the error reported was identical down to the last digit from the previous error.
When I went to test it out, I was expecting a weak correlation, but it predicted identical results for each piece of test data.
Now is this behavior because I'm not using FANN correctly (I hope), or because I'm working in a problem space where FANN is not particularly helpful?
ATdhvaankcse,