You are here: Start » FIL.NET » FIS.TrainOrganicModel Method

FIS.TrainOrganicModel Method

Trains OrganicModel, which has to be previously initialized with LoadOrganicTrainingData.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void TrainOrganicModel
(
	int inIterationCount,
	float inLearningRate,
	float inMomentum,
	int inModelCapacity,
	FilNet.DataPreprocessing inPreprocessing,
	FilNet.OrganicModel ioOrganicModel
)

Parameters

Name Type Range Default Description
inIterationCountint500Number of iteration of internal learning process. Default value: 500.
inLearningRatefloat0.1fHow aggressive the learning should be. Default value: 0.1f.
inMomentumfloat0.1fFactor that helps to move out of local minima. Default value: 0.1f.
inModelCapacityint10Internal size of model. Default value: 10.
inPreprocessingFilNet.DataPreprocessingMethod of cleaning the data before learning.
ioOrganicModelFilNet.OrganicModelResulting model.

Function Overrides

See also