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 | |
---|---|---|---|---|---|
![]() | inSvmModel | FilNet.SvmModel | Initialized SVM model. | ||
![]() | inVectorArray | System.Collections.Generic.IList<System.Collections.Generic.IList<float>> | Training data vector array. | ||
![]() | inAnswerArray | System.Collections.Generic.IList<int> | Correct classes for data vectors. | ||
![]() | outSvmModel | FilNet.SvmModel | Trained model. | ||
![]() | outTrainingAccuracy | float | Accuracy of prediction on training set. |