You are here: Start » AVL.NET » Invoke.MLP_Init
Creates multilayer perceptron model.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void MLP_Init ( Optional<List<int>> inHiddenLayers, Avl.ActivationFunction inActivationFunction, Avl.MlpPreprocessing inPreprocessing, Optional<int> inRandomSeed, int inInputCount, int inOutputCount, Avl.MlpModel outMlpModel )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inHiddenLayers | Atl.Optional<System.Collections.Generic.List<int>> | Internal structure of MLP network. Default value: atl::NIL. | ||
![]() | inActivationFunction | Avl.ActivationFunction | Type of activation function used to calculate neural response. | ||
![]() | inPreprocessing | Avl.MlpPreprocessing | Method of processing input data before learning. | ||
![]() | inRandomSeed | Atl.Optional<int> | <0, INF> | Number used as starting random seed. Default value: atl::NIL. | |
![]() | inInputCount | int | <1, INF> | 1 | MLP network input count. Default value: 1. |
![]() | inOutputCount | int | <1, INF> | 1 | MLP network output count. Default value: 1. |
![]() | outMlpModel | Avl.MlpModel | Initialized MlpModel. |