You are here: Start » AVL.NET » Function Reference » Data Classification » Multilayer Perceptron » AVL.MLP_Respond

AVL.MLP_Respond

Calculates multilayer perceptron answer.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void MLP_Respond
(
	AvlNet.MlpModel inMlpModel,
	IList<float> inInputVector,
	IList<float> outResponseVector
)

Parameters

Name Type Range Default Description
inMlpModelAvlNet.MlpModelTrained MlpModel object.
inInputVectorSystem.Collections.Generic.IList<float>Input vector of features used to calculate classifier response.
outResponseVectorSystem.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.

See also