You are here: Start » AVL.NET » 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 | |
|---|---|---|---|---|---|
![]() | inClassCount | int | <2, +INF> | Number of classes. | |
![]() | inDimensionCount | int | <1, +INF> | Length of feature vector. | |
![]() | outKNNModel | AvlNet.KNNModel | Initialized 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. |


