You are here: Start » AVL.NET » AVL.MLP_Init(AvlNet.ActivationFunction, AvlNet.MlpPreprocessing, int, int, AvlNet.MlpModel)

AVL.MLP_Init(AvlNet.ActivationFunction, AvlNet.MlpPreprocessing, int, int, AvlNet.MlpModel)

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,
	out AvlNet.MlpModel outMlpModel
)

Parameters

inActivationFunction
Type: AvlNet.ActivationFunction
Type of activation function used to calculate neural response
inPreprocessing
Type: AvlNet.MlpPreprocessing
Method of processing input data before learning
inInputCount
Type: System.Int32
MLP network input count
inOutputCount
Type: System.Int32
MLP network output count
outMlpModel
Type: AvlNet.MlpModel
Initialized MlpModel

See also