Scroll to navigation

mlpack_knn(1) User Commands mlpack_knn(1)

NAME

mlpack_knn - k-nearest-neighbors search

SYNOPSIS


mlpack_knn [-a string] [-e double] [-m unknown] [-k int] [-l int] [-q string] [-R bool] [-r string] [-b double] [-s int] [-u double] [-t string] [-D string] [-T string] [-V bool] [-d string] [-n string] [-M unknown] [-h -v]

DESCRIPTION

This program will calculate the k-nearest-neighbors of a set of points using kd-trees or cover trees (cover tree support is experimental and may be slow). You may specify a separate set of reference points and query points, or just a reference set which will be used as both the reference and query set.

For example, the following command will calculate the 5 nearest neighbors of each point in 'input.csv' and store the distances in 'distances.csv' and the neighbors in 'neighbors.csv':

$ mlpack_knn --k 5 --reference_file input.csv --neighbors_file neighbors.csv --distances_file distances.csv

The output is organized such that row i and column j in the neighbors output matrix corresponds to the index of the point in the reference set which is the j'th nearest neighbor from the point in the query set with index i. Row j and column i in the distances output matrix corresponds to the distance between those two points.

OPTIONAL INPUT OPTIONS

Type of neighbor search: 'naive', 'single_tree', 'dual_tree', 'greedy'. Default value 'dual_tree'.
If specified, will do approximate nearest neighbor search with given relative error. Default value 0.
Default help info.
Print help on a specific option. Default value ''.
Pre-trained kNN model.
Number of nearest neighbors to find. Default value 0.
Leaf size for tree building (used for kd-trees, vp trees, random projection trees, UB trees, R trees, R* trees, X trees, Hilbert R trees, R+ trees, R++ trees, spill trees, and octrees). Default value 20.
Matrix containing query points (optional).
Before tree-building, project the data onto a random orthogonal basis.
Matrix containing the reference dataset.
Balance threshold (only valid for spill trees). Default value 0.7.
Random seed (if 0, std::time(NULL) is used). Default value 0.
Overlapping size (only valid for spill trees). Default value 0.
Type of tree to use: 'kd', 'vp', 'rp', 'max-rp', 'ub', 'cover', 'r', 'r-star', 'x', 'ball', 'hilbert-r', 'r-plus', 'r-plus-plus', 'spill', 'oct'. Default value 'kd'.
Matrix of true distances to compute the effective error (average relative error) (it is printed when -v is specified).
Matrix of true neighbors to compute the recall (it is printed when -v is specified).
Display informational messages and the full list of parameters and timers at the end of execution.
Display the version of mlpack.

OPTIONAL OUTPUT OPTIONS

Matrix to output distances into.
Matrix to output neighbors into.
If specified, the kNN model will be output here.

ADDITIONAL INFORMATION

For further information, including relevant papers, citations, and theory, consult the documentation found at http://www.mlpack.org or included with your distribution of mlpack.

12 December 2020 mlpack-3.4.2