You are here: Start » FIL.NET » FIS.MLP_Init Method
FIS.MLP_Init Method
Creates multilayer perceptron model.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void MLP_Init ( FilNet.ActivationFunction inActivationFunction, FilNet.MlpPreprocessing inPreprocessing, int inInputCount, int inOutputCount, FilNet.MlpModel outMlpModel )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inActivationFunction | FilNet.ActivationFunction | Type of activation function used to calculate neural response. | ||
![]() | inPreprocessing | FilNet.MlpPreprocessing | Method of processing input data before learning. | ||
![]() | 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 | FilNet.MlpModel | Initialized MlpModel. |