|
DistanceNetwork Constructor
|
Namespace:
Accord.Neuro
Assembly:
Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax public DistanceNetwork(
int inputsCount,
int neuronsCount
)
Public Sub New (
inputsCount As Integer,
neuronsCount As Integer
)
Request Example
View SourceParameters
- inputsCount
- Type: SystemInt32
Network's inputs count. - neuronsCount
- Type: SystemInt32
Network's neurons count.
Remarks The new network is randomized (see
Randomize
method) after it is created.
See Also