You are here: Start » FIL.NET » 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 | |
---|---|---|---|---|---|
![]() | inSvmModel | Fil.SvmModel | Initialized SVM model. | ||
![]() | inVectorArray | System.Collections.Generic.List<System.Collections.Generic.List<float>> | Training data vector array. | ||
![]() | inAnswerArray | System.Collections.Generic.List<int> | Correct classes for data vectors. | ||
![]() | outSvmModel | Fil.SvmModel | Trained model. | ||
![]() | outTrainingAccuracy | float | Accuracy of prediction on training set. |