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

FIS.SVM_Train Method

Trains an SVM model.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void SVM_Train
(
	FilNet.SvmModel inSvmModel,
	IList<IList<float>> inVectorArray,
	IList<int> inAnswerArray,
	FilNet.SvmModel outSvmModel,
	out float outTrainingAccuracy
)

Parameters

Name Type Range Default Description
inSvmModelFilNet.SvmModelInitialized SVM model.
inVectorArraySystem.Collections.Generic.IList<System.Collections.Generic.IList<float>>Training data vector array.
inAnswerArraySystem.Collections.Generic.IList<int>Correct classes for data vectors.
outSvmModelFilNet.SvmModelTrained model.
outTrainingAccuracyfloatAccuracy of prediction on training set.

See also