You are here: Start » FIL.NET » Invoke.SVM_Init
Initializes an SVM model.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void SVM_Init ( Optional<float> inKernelGamma, float inKernelGammaScale, float inRegularizationConstant, Optional<float> inNu, float inStoppingEpsilon, bool inUseShrinkingHeuristics, Fil.SvmModel outSvmModel )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inKernelGamma | Ftl.Optional<float> | <0.0001f, INF> | 0.0001f | Gamma parameter for Rbf kernel. Default value: 0.0001f. |
![]() | 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. |
![]() | inNu | Ftl.Optional<float> | <0.0001f, 1.0f> | Tradeoff between training accuracy and number of SV. Default value: ftl::NIL. | |
![]() | 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 | Fil.SvmModel | Output model. |