Click or drag to resize
Accord.NET (logo)

KNearestNeighbors Constructor (Int32, Int32, Double, Int32)

Note: This API is now obsolete.

Creates a new KNearestNeighbors.

Namespace:  Accord.MachineLearning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please use KNearestNeighbors(int k) constructor instead.")]
public KNearestNeighbors(
	int k,
	int classes,
	double[][] inputs,
	int[] outputs
)
Request Example View Source

Parameters

k
Type: SystemInt32
The number of nearest neighbors to be used in the decision.
classes
Type: SystemInt32
The number of classes in the classification problem.
inputs
Type: SystemDouble
The input data points.
outputs
Type: SystemInt32
The associated labels for the input points.
See Also