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