Build a new Layer with neurons neurones. Every neuron has "inputs" inputs and the activation function f.

[Visual Basic]
Overloads Public Sub New( _
   ByVal neurons As Integer, _
   ByVal inputs As Integer, _
   ByVal f As NeuralNetwork.ActivationFunction _
)
[C#]
public Layer(
   int neurons,
   int inputs,
   ActivationFunction f
);

Parameters

neurons

Number of neurons

inputs

Number of inputs

f

Activation function of each neuron

See Also

Layer Class | Layer Members | NeuralNetwork Namespace | Layer Constructor Overload List