Skip to content

Latest commit

 

History

History
4 lines (4 loc) · 252 Bytes

File metadata and controls

4 lines (4 loc) · 252 Bytes

NeuralNetworkJava

Toy Neural network in java using processing
Parameter : input nodes, hidden nodes, output nodes, number of hidden layers
e.g: NN brain = new NN(2,3,1,2); 2 inputs,2 hidden layers containing 3 hidden nodes and 1 output node.