You are here: Start » FIL.NET » Invoke.SVM_ClassifySingle
Classifies input features based on a trained model.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void SVM_ClassifySingle ( Fil.SvmModel inSvmModel, List<float> inVector, out int outPrediction, Optional<List<int>> outModelClasses, Optional<List<float>> outClassProbabilities )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inSvmModel | Fil.SvmModel | Input trained model. | ||
![]() | inVector | System.Collections.Generic.List<float> | Data vector of unknown class. | ||
![]() | outPrediction | int | Predicted classes. | ||
![]() | outModelClasses | Ftl.Optional<System.Collections.Generic.List<int>> | All known model classes in order. | ||
![]() | outClassProbabilities | Ftl.Optional<System.Collections.Generic.List<float>> | For each data vector the probability of belonging to each class. |