You are here: Start » FIL.NET » FIS.SVM_Init Method
FIS.SVM_Init Method
Initializes an SVM model.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void SVM_Init ( float inKernelGammaScale, float inRegularizationConstant, float inStoppingEpsilon, bool inUseShrinkingHeuristics, FilNet.SvmModel outSvmModel )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inKernelGammaScale | float | <0.0001f, INF> | 1.0f | Gamma parameter scale. Default value: 1.0f. |
![]() | inRegularizationConstant | float | <0.0001f, INF> | 1.0f | Preventing overfitting. Default value: 1.0f. |
![]() | inStoppingEpsilon | float | <0.0001f, INF> | 0.001f | Epsilon for stopping criterium. Default value: 0.001f. |
![]() | inUseShrinkingHeuristics | bool | True | May speed up computations. Default value: True. | |
![]() | outSvmModel | FilNet.SvmModel | Output model. |