I'm trying to use the NN to serve as a curve fitter. Basing my code on the sample PerceptronSample I have the simple code pasted below. What I find is that it hangs at the call to learn(). Does anyone know why? Am I doing something wrong or is this a bug? Thanks Graham public class CurveFittingNeuralNetwork { private int numberInputLayers; private int numberOutputLayers; private String savedTrainingSetFilename; // eg; "mySamplePerceptron.nnet" private NeuralNetwork neuralNet; public CurveFittingNeuralNetwork(int...
Hi I can get the handle of a general non-Java window using: http://www.java-forums.org/advanced-java/44064-getting-window-id-window-frame.html...