You are here: Start » AVL.NET » AVL.MLP_Respond(AvlNet.MlpModel, float[], float[])

AVL.MLP_Respond(AvlNet.MlpModel, float[], float[])

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

inMlpModel
Type: AvlNet.MlpModel
Trained MlpModel object
inInputVector
Type: System.Single
Input vector of features used to calculate classifier response
outResponseVector
Type: System.Single
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

Error type Description
DomainError Incorrect or uninitialized MlpModel in MLP_Respond.

See also