|
KNearestNeighborsTInputGetNearestNeighbors Method
|
Gets the top
K points
that are the closest to a given
input.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public override TInput[] GetNearestNeighbors(
TInput input,
out int[] labels
)
Public Overrides Function GetNearestNeighbors (
input As TInput,
<OutAttribute> ByRef labels As Integer()
) As TInput()
Request Example
View SourceParameters
- input
- Type: TInput
The query point whose neighbors will be found. - labels
- Type: SystemInt32
The label for each neighboring point.
Return Value
Type:
TInput
An array containing the top
K points that are
at the closest possible distance to
input.
See Also