You are here: Start » FIL.NET » FIS.SVM_ClassifyMultiple Method

FIS.SVM_ClassifyMultiple Method

Classifies input points based on trained model.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void SVM_ClassifyMultiple
(
	FilNet.SvmModel inSvmModel,
	IList<IList<float>> inVectorArray,
	IList<int> outPredictions,
	NullableRef<List<int>> outModelClasses,
	NullableRef<List<List<float>>> outClassProbabilities
)

Parameters

Name Type Range Default Description
inSvmModelFilNet.SvmModelInput trained model.
inVectorArraySystem.Collections.Generic.IList<System.Collections.Generic.IList<float>>Data vector array of unknown classes.
outPredictionsSystem.Collections.Generic.IList<int>Predicted classes.
outModelClassesFilNet.NullableRef<System.Collections.Generic.List<int>>All known model classes in order. Can be null to skip this parameter calculation.
outClassProbabilitiesFilNet.NullableRef<System.Collections.Generic.List<System.Collections.Generic.List<float>>>For each data vector the probability of belonging to each class. Can be null to skip this parameter calculation.

Function Overrides

See also