Generator to create neural net based genomes with a random number of connections and hidden layer neurons.
| inputLayerSize | Number of neurons in the input layer |
| outputLayerSize | Number of neurons in the output layer |
| hiddenLayers | Number of 'hidden' inner layers |
| hiddenLayerMaxSize | Maximum number of neurons in each hidden layer |
| maxConnections | Maximum number of connections for each neurons, minimum is set to 1 |
Creates a neural net with the given number of layers. Every node has a connection to each node in the previous layer.
| inputLayerSize | Number of neurons in the input layer |
| outputLayerSize | Number of neurons in the output layer |
| hiddenLayers | Number of 'hidden' inner layers |
| hiddenLayerSize | Number of neurons in each hidden layer |