You are here: Start » AVL.NET » Function Reference » Data Classification » Support Vector Machines » AVL.SVM_ClassifySingle

AVL.SVM_ClassifySingle

Classifies input features based on a trained model.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SVM_ClassifySingle
(
	AvlNet.SvmModel inSvmModel,
	IList<float> inVector,
	out int outPrediction
)

Parameters

Name Type Range Default Description
inSvmModelAvlNet.SvmModelInput trained model.
inVectorSystem.Collections.Generic.IList<float>Data vector of unknown class.
outPredictionintPredicted classes.

Description

The operation predicts classes for the given data points. It takes a data vector (inVector) as an argument. The vector has to be of the same size as vectors used for training the model. The operation outputs predicted class (outPrediction) for the data vector.
outModelClasses are all class labels encountered during training.
outClassProbabilities provides, for the input vector, estimated probability belonging to each class. Precisely, the value under index i denotes probability of given vector belonging to the class outModelClasses[i].

Errors

List of possible exceptions:

Error type Description
DomainError Incorrect vector size in SVM_ClassifySingle
DomainError Incorrect, uninitialized or not trained SvmModel in SVM_ClassifySingle.

Function Overrides

See also