You are here: Start » AVL.NET » AVS.MLP_Init Method

AVS.MLP_Init Method

Creates multilayer perceptron model.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void MLP_Init
(
	AvlNet.ActivationFunction inActivationFunction,
	AvlNet.MlpPreprocessing inPreprocessing,
	int inInputCount,
	int inOutputCount,
	AvlNet.MlpModel outMlpModel
)

Parameters

Name Type Range Default Description
inActivationFunctionAvlNet.ActivationFunctionType of activation function used to calculate neural response.
inPreprocessingAvlNet.MlpPreprocessingMethod of processing input data before learning.
inInputCountint<1, INF>1MLP network input count. Default value: 1.
inOutputCountint<1, INF>1MLP network output count. Default value: 1.
outMlpModelAvlNet.MlpModelInitialized MlpModel.

Function Overrides

See also