|
ActivationNetworkLearningConfigurationFunction Delegate
|
Delegate used to configure and create layer-specific learning algorithms.
Namespace:
Accord.Neuro.Learning
Assembly:
Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax public delegate ISupervisedLearning ActivationNetworkLearningConfigurationFunction(
ActivationNetwork network,
int index
)
Public Delegate Function ActivationNetworkLearningConfigurationFunction (
network As ActivationNetwork,
index As Integer
) As ISupervisedLearning
Parameters
- network
- Type: Accord.NeuroActivationNetwork
The network layer being trained. - index
- Type: SystemInt32
The index of the layer in the deep network.
Return Value
Type:
ISupervisedLearning
The function should return an instance of the algorithm
which should be used to train the network.
See Also