You are here: Start » AVL.NET » Function Reference » Data Classification » Nearest Neighbors » AVL.KNN_Init

AVL.KNN_Init

Initializes the KNN classifier.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void KNN_Init
(
	int inClassCount,
	int inDimensionCount,
	AvlNet.KNNModel outKNNModel
)

Parameters

Name Type Range Default Description
inClassCountint<2, +INF>Number of classes.
inDimensionCountint<1, +INF>Length of feature vector.
outKNNModelAvlNet.KNNModelInitialized KNN model.

Errors

List of possible exceptions:

Error type Description
DomainError At least two classes must be provided.
DomainError Feature vector should have at least one dimension.

See also