You are here: Start » FIL.NET » Invoke.SVM_ClassifyMultiple

Invoke.SVM_ClassifyMultiple

Classifies input points based on trained model.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SVM_ClassifyMultiple
(
	Fil.SvmModel inSvmModel,
	List<List<float>> inVectorArray,
	List<int> outPredictions,
	Optional<List<int>> outModelClasses,
	Optional<List<List<float>>> outClassProbabilities
)

Parameters

Name Type Range Default Description
inSvmModelFil.SvmModelInput trained model.
inVectorArraySystem.Collections.Generic.List<System.Collections.Generic.List<float>>Data vector array of unknown classes.
outPredictionsSystem.Collections.Generic.List<int>Predicted classes.
outModelClassesFtl.Optional<System.Collections.Generic.List<int>>All known model classes in order.
outClassProbabilitiesFtl.Optional<System.Collections.Generic.List<System.Collections.Generic.List<float>>>For each data vector the probability of belonging to each class.

See also