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
inKernelGammaScalefloat<0.0001f, INF>1.0fGamma parameter scale. Default value: 1.0f.
inRegularizationConstantfloat<0.0001f, INF>1.0fPreventing overfitting. Default value: 1.0f.
inStoppingEpsilonfloat<0.0001f, INF>0.001fEpsilon for stopping criterium. Default value: 0.001f.
inUseShrinkingHeuristicsboolTrueMay speed up computations. Default value: True.
outSvmModelFilNet.SvmModelOutput model.

Function Overrides

See also