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

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

Parameters

neurons

Number of neurons

inputs

Number of inputs

See Also

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