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 n_act. The lerning algorithm is set to learn.

Overload List

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 n_act. The lerning algorithm is set to learn.

public NeuralNetwork(int,int[],ActivationFunction,LearningAlgorithm);

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 n_act. The lerning algorithm is set to default (Back Propagation).

public NeuralNetwork(int,int[],ActivationFunction);

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).

public NeuralNetwork(int,int[]);

See Also

NeuralNetwork Class | NeuralNetwork Members | NeuralNetwork Namespace