You are here: Start » AVL.NET » AVL.MLP_Respond Method

AVL.MLP_Respond Method

Calculates multilayer perceptron answer.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void MLP_Respond(
	AvlNet.MlpModel inMlpModel,
	float[] inInputVector,
	out float[] outResponseVector
)

Parameters

Name Type Range Default Description
inMlpModelAvlNet.MlpModelTrained MlpModel object.
inInputVectorfloatInput vector of features used to calculate classifier response.
outResponseVectorfloatCalculated 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

Error type Description
DomainError Incorrect or uninitialized MlpModel in MLP_Respond.

See also