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
(
	NullableRef<IList<int>> inHiddenLayers,
	AvlNet.ActivationFunction inActivationFunction,
	AvlNet.MlpPreprocessing inPreprocessing,
	int? inRandomSeed,
	int inInputCount,
	int inOutputCount,
	AvlNet.MlpModel outMlpModel
)

Parameters

Name Type Range Default Description
inHiddenLayersAvlNet.NullableRef<System.Collections.Generic.IList<int>>Internal structure of MLP network. Default value: atl::NIL.
inActivationFunctionAvlNet.ActivationFunctionType of activation function used to calculate neural response.
inPreprocessingAvlNet.MlpPreprocessingMethod of processing input data before learning.
inRandomSeedint?<0, INF>Number used as starting random seed. Default value: atl::NIL.
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