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