Create a new neural network with "inputs" inputs and size of "layers" layers of neurones. The layer i is made with layers_desc[i] neurones. The activation function of each neuron is set to default (Sigmoid with beta = 1). The lerning algorithm is set to default (Back Propagation).
[Visual Basic]
Overloads Public Sub New( _
ByVal inputs As Integer, _
ByVal layers_desc As Integer() _
)
[C#]
public NeuralNetwork(
int inputs,
int[] layers_desc
);
Parameters
inputs
Number of inputs of the network
layers_desc
Number of neurons for each layer of the network
See Also
NeuralNetwork Class | NeuralNetwork Members | NeuralNetwork Namespace | NeuralNetwork Constructor Overload List