You are here: Start » FIL.NET » Invoke.SVM_Train

Invoke.SVM_Train

Trains an SVM model.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SVM_Train
(
	Fil.SvmModel inSvmModel,
	List<List<float>> inVectorArray,
	List<int> inAnswerArray,
	Fil.SvmModel outSvmModel,
	out float outTrainingAccuracy
)

Parameters

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

See also