You are here: Start » FIL.NET » Function Reference » Data Classification » Multilayer Perceptron » FIL.MLP_Respond
Calculates multilayer perceptron answer.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void MLP_Respond ( FilNet.MlpModel inMlpModel, IList<float> inInputVector, IList<float> outResponseVector )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inMlpModel | FilNet.MlpModel | Trained MlpModel object. | ||
![]() | inInputVector | System.Collections.Generic.IList<float> | Input vector of features used to calculate classifier response. | ||
![]() | outResponseVector | System.Collections.Generic.IList<float> | Calculated response. |
Description
The operation calculates response of multilayer perceptron classifier for the input data provided in inInputVector.
The parameter inInputVector size must be equal to trained MlpModel input count. Input count is set in MLP_Init.
The operation result outResponseVector is size of output count provided during MlpModel initializing operation.

Image: Visualization of MLP_Respond filter.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Incorrect or uninitialized MlpModel in MLP_Respond. |