How do I create and train neural network with Neuroph?
You can create networks with GUI editor easyNeurons using network specific wizards (see Networks in the main menu) , or in Java code simple as NeuralNetwork nnet = new Perceptron(2, 1); After that you have to provide training data as instance of TrainingSet class, and then to start the learning procedure nnet.learn(trainingSet); In GUI you can enter training set using the training set editor, and then to use the ‘train’ button.