.. _neighbors: ================= Nearest Neighbors ================= .. sectionauthor:: Jake Vanderplas .. currentmodule:: sklearn.neighbors :mod:`sklearn.neighbors` provides functionality for unsupervised and supervised neighbors-based learning methods. Unsupervised nearest neighbors is the foundation of many other learning methods, notably manifold learning and spectral clustering. Supervised neighbors-based learning comes in two flavors: `classification`_ for data with discrete labels, and `regression`_ for data with continuous labels. The principle behind nearest neighbor methods is to find a predefined number of training samples closest in distance to the new point, and predict the label from these. The number of samples can be a user-defined constant (k-nearest neighbor learning), or vary based on the local density of points (radius-based neighbor learning). The distance can, in general, be any metric measure: standard Euclidean distance is the most common choice. Neighbors-based methods are known as *non-generalizing* machine learning methods, since they simply "remember" all of its training data (possibly transformed into a fast indexing structure such as a :ref:`Ball Tree ` or :ref:`KD Tree `.). Despite its simplicity, nearest neighbors has been successful in a large number of classification and regression problems, including handwritten digits or satellite image scenes. Being a non-parametric method, it is often successful in classification situations where the decision boundary is very irregular. The classes in :mod:`sklearn.neighbors` can handle either Numpy arrays or `scipy.sparse` matrices as input. For dense matrices, a large number of possible distance metrics are supported. For sparse matrices, arbitrary Minkowski metrics are supported for searches. There are many learning routines which rely on nearest neighbors at their core. One example is :ref:`kernel density estimation `, discussed in the :ref:`density estimation ` section. .. _unsupervised_neighbors: Unsupervised Nearest Neighbors ============================== :class:`NearestNeighbors` implements unsupervised nearest neighbors learning. It acts as a uniform interface to three different nearest neighbors algorithms: :class:`BallTree`, :class:`KDTree`, and a brute-force algorithm based on routines in :mod:`sklearn.metrics.pairwise`. The choice of neighbors search algorithm is controlled through the keyword ``'algorithm'``, which must be one of ``['auto', 'ball_tree', 'kd_tree', 'brute']``. When the default value ``'auto'`` is passed, the algorithm attempts to determine the best approach from the training data. For a discussion of the strengths and weaknesses of each option, see `Nearest Neighbor Algorithms`_. .. warning:: Regarding the Nearest Neighbors algorithms, if two neighbors, neighbor :math:`k+1` and :math:`k`, have identical distances but different labels, the results will depend on the ordering of the training data. Finding the Nearest Neighbors ----------------------------- For the simple task of finding the nearest neighbors between two sets of data, the unsupervised algorithms within :mod:`sklearn.neighbors` can be used: >>> from sklearn.neighbors import NearestNeighbors >>> import numpy as np >>> X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]]) >>> nbrs = NearestNeighbors(n_neighbors=2, algorithm='ball_tree').fit(X) >>> distances, indices = nbrs.kneighbors(X) >>> indices # doctest: +ELLIPSIS array([[0, 1], [1, 0], [2, 1], [3, 4], [4, 3], [5, 4]]...) >>> distances array([[ 0. , 1. ], [ 0. , 1. ], [ 0. , 1.41421356], [ 0. , 1. ], [ 0. , 1. ], [ 0. , 1.41421356]]) Because the query set matches the training set, the nearest neighbor of each point is the point itself, at a distance of zero. It is also possible to efficiently produce a sparse graph showing the connections between neighboring points: >>> nbrs.kneighbors_graph(X).toarray() array([[ 1., 1., 0., 0., 0., 0.], [ 1., 1., 0., 0., 0., 0.], [ 0., 1., 1., 0., 0., 0.], [ 0., 0., 0., 1., 1., 0.], [ 0., 0., 0., 1., 1., 0.], [ 0., 0., 0., 0., 1., 1.]]) Our dataset is structured such that points nearby in index order are nearby in parameter space, leading to an approximately block-diagonal matrix of K-nearest neighbors. Such a sparse graph is useful in a variety of circumstances which make use of spatial relationships between points for unsupervised learning: in particular, see :class:`sklearn.manifold.Isomap`, :class:`sklearn.manifold.LocallyLinearEmbedding`, and :class:`sklearn.cluster.SpectralClustering`. KDTree and BallTree Classes --------------------------- Alternatively, one can use the :class:`KDTree` or :class:`BallTree` classes directly to find nearest neighbors. This is the functionality wrapped by the :class:`NearestNeighbors` class used above. The Ball Tree and KD Tree have the same interface; we'll show an example of using the KD Tree here: >>> from sklearn.neighbors import KDTree >>> import numpy as np >>> X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]]) >>> kdt = KDTree(X, leaf_size=30, metric='euclidean') >>> kdt.query(X, k=2, return_distance=False) # doctest: +ELLIPSIS array([[0, 1], [1, 0], [2, 1], [3, 4], [4, 3], [5, 4]]...) Refer to the :class:`KDTree` and :class:`BallTree` class documentation for more information on the options available for neighbors searches, including specification of query strategies, of various distance metrics, etc. For a list of available metrics, see the documentation of the :class:`DistanceMetric` class. .. _classification: Nearest Neighbors Classification ================================ Neighbors-based classification is a type of *instance-based learning* or *non-generalizing learning*: it does not attempt to construct a general internal model, but simply stores instances of the training data. Classification is computed from a simple majority vote of the nearest neighbors of each point: a query point is assigned the data class which has the most representatives within the nearest neighbors of the point. scikit-learn implements two different nearest neighbors classifiers: :class:`KNeighborsClassifier` implements learning based on the :math:`k` nearest neighbors of each query point, where :math:`k` is an integer value specified by the user. :class:`RadiusNeighborsClassifier` implements learning based on the number of neighbors within a fixed radius :math:`r` of each training point, where :math:`r` is a floating-point value specified by the user. The :math:`k`-neighbors classification in :class:`KNeighborsClassifier` is the more commonly used of the two techniques. The optimal choice of the value :math:`k` is highly data-dependent: in general a larger :math:`k` suppresses the effects of noise, but makes the classification boundaries less distinct. In cases where the data is not uniformly sampled, radius-based neighbors classification in :class:`RadiusNeighborsClassifier` can be a better choice. The user specifies a fixed radius :math:`r`, such that points in sparser neighborhoods use fewer nearest neighbors for the classification. For high-dimensional parameter spaces, this method becomes less effective due to the so-called "curse of dimensionality". The basic nearest neighbors classification uses uniform weights: that is, the value assigned to a query point is computed from a simple majority vote of the nearest neighbors. Under some circumstances, it is better to weight the neighbors such that nearer neighbors contribute more to the fit. This can be accomplished through the ``weights`` keyword. The default value, ``weights = 'uniform'``, assigns uniform weights to each neighbor. ``weights = 'distance'`` assigns weights proportional to the inverse of the distance from the query point. Alternatively, a user-defined function of the distance can be supplied which is used to compute the weights. .. |classification_1| image:: ../auto_examples/neighbors/images/plot_classification_001.png :target: ../auto_examples/neighbors/plot_classification.html :scale: 50 .. |classification_2| image:: ../auto_examples/neighbors/images/plot_classification_002.png :target: ../auto_examples/neighbors/plot_classification.html :scale: 50 .. centered:: |classification_1| |classification_2| .. topic:: Examples: * :ref:`example_neighbors_plot_classification.py`: an example of classification using nearest neighbors. .. _regression: Nearest Neighbors Regression ============================ Neighbors-based regression can be used in cases where the data labels are continuous rather than discrete variables. The label assigned to a query point is computed based the mean of the labels of its nearest neighbors. scikit-learn implements two different neighbors regressors: :class:`KNeighborsRegressor` implements learning based on the :math:`k` nearest neighbors of each query point, where :math:`k` is an integer value specified by the user. :class:`RadiusNeighborsRegressor` implements learning based on the neighbors within a fixed radius :math:`r` of the query point, where :math:`r` is a floating-point value specified by the user. The basic nearest neighbors regression uses uniform weights: that is, each point in the local neighborhood contributes uniformly to the classification of a query point. Under some circumstances, it can be advantageous to weight points such that nearby points contribute more to the regression than faraway points. This can be accomplished through the ``weights`` keyword. The default value, ``weights = 'uniform'``, assigns equal weights to all points. ``weights = 'distance'`` assigns weights proportional to the inverse of the distance from the query point. Alternatively, a user-defined function of the distance can be supplied, which will be used to compute the weights. .. figure:: ../auto_examples/neighbors/images/plot_regression_001.png :target: ../auto_examples/neighbors/plot_regression.html :align: center :scale: 75 The use of multi-output nearest neighbors for regression is demonstrated in :ref:`example_plot_multioutput_face_completion.py`. In this example, the inputs X are the pixels of the upper half of faces and the outputs Y are the pixels of the lower half of those faces. .. figure:: ../auto_examples/images/plot_multioutput_face_completion_001.png :target: ../auto_examples/plot_multioutput_face_completion.html :scale: 75 :align: center .. topic:: Examples: * :ref:`example_neighbors_plot_regression.py`: an example of regression using nearest neighbors. * :ref:`example_plot_multioutput_face_completion.py`: an example of multi-output regression using nearest neighbors. Nearest Neighbor Algorithms =========================== .. _brute_force: Brute Force ----------- Fast computation of nearest neighbors is an active area of research in machine learning. The most naive neighbor search implementation involves the brute-force computation of distances between all pairs of points in the dataset: for :math:`N` samples in :math:`D` dimensions, this approach scales as :math:`O[D N^2]`. Efficient brute-force neighbors searches can be very competitive for small data samples. However, as the number of samples :math:`N` grows, the brute-force approach quickly becomes infeasible. In the classes within :mod:`sklearn.neighbors`, brute-force neighbors searches are specified using the keyword ``algorithm = 'brute'``, and are computed using the routines available in :mod:`sklearn.metrics.pairwise`. .. _kd_tree: K-D Tree -------- To address the computational inefficiencies of the brute-force approach, a variety of tree-based data structures have been invented. In general, these structures attempt to reduce the required number of distance calculations by efficiently encoding aggregate distance information for the sample. The basic idea is that if point :math:`A` is very distant from point :math:`B`, and point :math:`B` is very close to point :math:`C`, then we know that points :math:`A` and :math:`C` are very distant, *without having to explicitly calculate their distance*. In this way, the computational cost of a nearest neighbors search can be reduced to :math:`O[D N \log(N)]` or better. This is a significant improvement over brute-force for large :math:`N`. An early approach to taking advantage of this aggregate information was the *KD tree* data structure (short for *K-dimensional tree*), which generalizes two-dimensional *Quad-trees* and 3-dimensional *Oct-trees* to an arbitrary number of dimensions. The KD tree is a binary tree structure which recursively partitions the parameter space along the data axes, dividing it into nested orthotopic regions into which data points are filed. The construction of a KD tree is very fast: because partitioning is performed only along the data axes, no :math:`D`-dimensional distances need to be computed. Once constructed, the nearest neighbor of a query point can be determined with only :math:`O[\log(N)]` distance computations. Though the KD tree approach is very fast for low-dimensional (:math:`D < 20`) neighbors searches, it becomes inefficient as :math:`D` grows very large: this is one manifestation of the so-called "curse of dimensionality". In scikit-learn, KD tree neighbors searches are specified using the keyword ``algorithm = 'kd_tree'``, and are computed using the class :class:`KDTree`. .. topic:: References: * `"Multidimensional binary search trees used for associative searching" `_, Bentley, J.L., Communications of the ACM (1975) .. _ball_tree: Ball Tree --------- To address the inefficiencies of KD Trees in higher dimensions, the *ball tree* data structure was developed. Where KD trees partition data along Cartesian axes, ball trees partition data in a series of nesting hyper-spheres. This makes tree construction more costly than that of the KD tree, but results in a data structure which can be very efficient on highly-structured data, even in very high dimensions. A ball tree recursively divides the data into nodes defined by a centroid :math:`C` and radius :math:`r`, such that each point in the node lies within the hyper-sphere defined by :math:`r` and :math:`C`. The number of candidate points for a neighbor search is reduced through use of the *triangle inequality*: .. math:: |x+y| \leq |x| + |y| With this setup, a single distance calculation between a test point and the centroid is sufficient to determine a lower and upper bound on the distance to all points within the node. Because of the spherical geometry of the ball tree nodes, it can out-perform a *KD-tree* in high dimensions, though the actual performance is highly dependent on the structure of the training data. In scikit-learn, ball-tree-based neighbors searches are specified using the keyword ``algorithm = 'ball_tree'``, and are computed using the class :class:`sklearn.neighbors.BallTree`. Alternatively, the user can work with the :class:`BallTree` class directly. .. topic:: References: * `"Five balltree construction algorithms" `_, Omohundro, S.M., International Computer Science Institute Technical Report (1989) Choice of Nearest Neighbors Algorithm ------------------------------------- The optimal algorithm for a given dataset is a complicated choice, and depends on a number of factors: * number of samples :math:`N` (i.e. ``n_samples``) and dimensionality :math:`D` (i.e. ``n_features``). * *Brute force* query time grows as :math:`O[D N]` * *Ball tree* query time grows as approximately :math:`O[D \log(N)]` * *KD tree* query time changes with :math:`D` in a way that is difficult to precisely characterise. For small :math:`D` (less than 20 or so) the cost is approximately :math:`O[D\log(N)]`, and the KD tree query can be very efficient. For larger :math:`D`, the cost increases to nearly :math:`O[DN]`, and the overhead due to the tree structure can lead to queries which are slower than brute force. For small data sets (:math:`N` less than 30 or so), :math:`\log(N)` is comparable to :math:`N`, and brute force algorithms can be more efficient than a tree-based approach. Both :class:`KDTree` and :class:`BallTree` address this through providing a *leaf size* parameter: this controls the number of samples at which a query switches to brute-force. This allows both algorithms to approach the efficiency of a brute-force computation for small :math:`N`. * data structure: *intrinsic dimensionality* of the data and/or *sparsity* of the data. Intrinsic dimensionality refers to the dimension :math:`d \le D` of a manifold on which the data lies, which can be linearly or non-linearly embedded in the parameter space. Sparsity refers to the degree to which the data fills the parameter space (this is to be distinguished from the concept as used in "sparse" matrices. The data matrix may have no zero entries, but the **structure** can still be "sparse" in this sense). * *Brute force* query time is unchanged by data structure. * *Ball tree* and *KD tree* query times can be greatly influenced by data structure. In general, sparser data with a smaller intrinsic dimensionality leads to faster query times. Because the KD tree internal representation is aligned with the parameter axes, it will not generally show as much improvement as ball tree for arbitrarily structured data. Datasets used in machine learning tend to be very structured, and are very well-suited for tree-based queries. * number of neighbors :math:`k` requested for a query point. * *Brute force* query time is largely unaffected by the value of :math:`k` * *Ball tree* and *KD tree* query time will become slower as :math:`k` increases. This is due to two effects: first, a larger :math:`k` leads to the necessity to search a larger portion of the parameter space. Second, using :math:`k > 1` requires internal queueing of results as the tree is traversed. As :math:`k` becomes large compared to :math:`N`, the ability to prune branches in a tree-based query is reduced. In this situation, Brute force queries can be more efficient. * number of query points. Both the ball tree and the KD Tree require a construction phase. The cost of this construction becomes negligible when amortized over many queries. If only a small number of queries will be performed, however, the construction can make up a significant fraction of the total cost. If very few query points will be required, brute force is better than a tree-based method. Currently, ``algorithm = 'auto'`` selects ``'kd_tree'`` if :math:`k < N/2` and the ``'effective_metric_'`` is in the ``'VALID_METRICS'`` list of ``'kd_tree'``. It selects ``'ball_tree'`` if :math:`k < N/2` and the ``'effective_metric_'`` is not in the ``'VALID_METRICS'`` list of ``'kd_tree'``. It selects ``'brute'`` if :math:`k >= N/2`. This choice is based on the assumption that the number of query points is at least the same order as the number of training points, and that ``leaf_size`` is close to its default value of ``30``. Effect of ``leaf_size`` ----------------------- As noted above, for small sample sizes a brute force search can be more efficient than a tree-based query. This fact is accounted for in the ball tree and KD tree by internally switching to brute force searches within leaf nodes. The level of this switch can be specified with the parameter ``leaf_size``. This parameter choice has many effects: **construction time** A larger ``leaf_size`` leads to a faster tree construction time, because fewer nodes need to be created **query time** Both a large or small ``leaf_size`` can lead to suboptimal query cost. For ``leaf_size`` approaching 1, the overhead involved in traversing nodes can significantly slow query times. For ``leaf_size`` approaching the size of the training set, queries become essentially brute force. A good compromise between these is ``leaf_size = 30``, the default value of the parameter. **memory** As ``leaf_size`` increases, the memory required to store a tree structure decreases. This is especially important in the case of ball tree, which stores a :math:`D`-dimensional centroid for each node. The required storage space for :class:`BallTree` is approximately ``1 / leaf_size`` times the size of the training set. ``leaf_size`` is not referenced for brute force queries. Nearest Centroid Classifier =========================== The :class:`NearestCentroid` classifier is a simple algorithm that represents each class by the centroid of its members. In effect, this makes it similar to the label updating phase of the :class:`sklearn.KMeans` algorithm. It also has no parameters to choose, making it a good baseline classifier. It does, however, suffer on non-convex classes, as well as when classes have drastically different variances, as equal variance in all dimensions is assumed. See Linear Discriminant Analysis (:class:`sklearn.lda.LDA`) and Quadratic Discriminant Analysis (:class:`sklearn.qda.QDA`) for more complex methods that do not make this assumption. Usage of the default :class:`NearestCentroid` is simple: >>> from sklearn.neighbors.nearest_centroid import NearestCentroid >>> import numpy as np >>> X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]]) >>> y = np.array([1, 1, 1, 2, 2, 2]) >>> clf = NearestCentroid() >>> clf.fit(X, y) NearestCentroid(metric='euclidean', shrink_threshold=None) >>> print(clf.predict([[-0.8, -1]])) [1] Nearest Shrunken Centroid ------------------------- The :class:`NearestCentroid` classifier has a ``shrink_threshold`` parameter, which implements the nearest shrunken centroid classifier. In effect, the value of each feature for each centroid is divided by the within-class variance of that feature. The feature values are then reduced by ``shrink_threshold``. Most notably, if a particular feature value crosses zero, it is set to zero. In effect, this removes the feature from affecting the classification. This is useful, for example, for removing noisy features. In the example below, using a small shrink threshold increases the accuracy of the model from 0.81 to 0.82. .. |nearest_centroid_1| image:: ../auto_examples/neighbors/images/plot_nearest_centroid_001.png :target: ../auto_examples/neighbors/plot_classification.html :scale: 50 .. |nearest_centroid_2| image:: ../auto_examples/neighbors/images/plot_nearest_centroid_002.png :target: ../auto_examples/neighbors/plot_classification.html :scale: 50 .. centered:: |nearest_centroid_1| |nearest_centroid_2| .. topic:: Examples: * :ref:`example_neighbors_plot_nearest_centroid.py`: an example of classification using nearest centroid with different shrink thresholds. Approximate Nearest Neighbors ============================= There are many efficient exact nearest neighbor search algorithms for low dimensions :math:`d` (approximately 50). However these algorithms perform poorly with respect to space and query time when :math:`d` increases. These algorithms are not any better than comparing query point to each point from the database in a high dimension (see :ref:`brute_force`). This is a well-known consequence of the phenomenon called “The Curse of Dimensionality”. There are certain applications where we do not need the exact nearest neighbors but having a “good guess” would suffice. When answers do not have to be exact, the :class:`LSHForest` class implements an approximate nearest neighbor search. Approximate nearest neighbor search methods have been designed to try to speedup query time with high dimensional data. These techniques are useful when the aim is to characterize the neighborhood rather than identifying the exact neighbors themselves (eg: k-nearest neighbors classification and regression). Some of the most popular approximate nearest neighbor search techniques are locality sensitive hashing, best bin fit and balanced box-decomposition tree based search. Locality Sensitive Hashing Forest --------------------------------- The vanilla implementation of locality sensitive hashing has a hyper-parameter that is hard to tune in practice, therefore scikit-learn implements a variant called :class:`LSHForest` that has more reasonable hyperparameters. Both methods use internally random hyperplanes to index the samples into buckets and actual cosine similarities are only computed for samples that collide with the query hence achieving sublinear scaling. (see :ref:`Mathematical description of Locality Sensitive Hashing `). :class:`LSHForest` has two main hyper-parameters: ``n_estimators`` and ``n_candidates``. The accuracy of queries can be controlled using these parameters as demonstrated in the following plots: .. figure:: ../auto_examples/neighbors/images/plot_approximate_nearest_neighbors_hyperparameters_001.png :target: ../auto_examples/neighbors/plot_approximate_nearest_neighbors_hyperparameters.html :align: center :scale: 50 .. figure:: ../auto_examples/neighbors/images/plot_approximate_nearest_neighbors_hyperparameters_002.png :target: ../auto_examples/neighbors/plot_approximate_nearest_neighbors_hyperparameters.html :align: center :scale: 50 As a rule of thumb, a user can set ``n_estimators`` to a large enough value (e.g. between 10 and 50) and then adjust ``n_candidates`` to trade off accuracy for query time. For small data sets, the brute force method for exact nearest neighbor search can be faster than LSH Forest. However LSH Forest has a sub-linear query time scalability with the index size. The exact break even point where LSH Forest queries become faster than brute force depends on the dimensionality, structure of the dataset, required level of precision, characteristics of the runtime environment such as availability of BLAS optimizations, number of CPU cores and size of the CPU caches. Following graphs depict scalability of LSHForest queries with index size. .. figure:: ../auto_examples/neighbors/images/plot_approximate_nearest_neighbors_scalability_001.png :target: ../auto_examples/neighbors/plot_approximate_nearest_neighbors_scalability.html :align: center :scale: 50 .. figure:: ../auto_examples/neighbors/images/plot_approximate_nearest_neighbors_scalability_002.png :target: ../auto_examples/neighbors/plot_approximate_nearest_neighbors_scalability.html :align: center :scale: 50 .. figure:: ../auto_examples/neighbors/images/plot_approximate_nearest_neighbors_scalability_003.png :target: ../auto_examples/neighbors/plot_approximate_nearest_neighbors_scalability.html :align: center :scale: 50 For fixed :class:`LSHForest` parameters, the accuracy of queries tends to slowly decrease with larger datasets. The error bars on the previous plots represent standard deviation across different queries. .. topic:: Examples: * :ref:`example_neighbors_plot_approximate_nearest_neighbors_hyperparameters.py`: an example of the behavior of hyperparameters of approximate nearest neighbor search using LSH Forest. * :ref:`example_neighbors_plot_approximate_nearest_neighbors_scalability.py`: an example of scalability of approximate nearest neighbor search using LSH Forest. .. _mathematical_description_of_lsh: Mathematical description of Locality Sensitive Hashing ------------------------------------------------------ Locality sensitive hashing (LSH) techniques have been used in many areas where nearest neighbor search is performed in high dimensions. The main concept behind LSH is to hash each data point in the database using multiple (often simple) hash functions to form a digest (also called a *hash*). At this point the probability of collision - where two objects have similar digests - is much higher for the points which are close to each other than that of the distant points. We describe the requirements for a hash function family to be locality sensitive as follows. A family :math:`H` of functions from a domain :math:`S` to a range :math:`U` is called :math:`(r, e , p1 , p2 )`-sensitive, with :math:`r, e > 0`, :math:`p_1 > p_2 > 0`, if for any :math:`p, q \in S`, the following conditions hold (:math:`D` is the distance function): * If :math:`D(p,q) <= r` then :math:`P_H[h(p) = h(q)] >= p_1`, * If :math:`D(p,q) > r(1 + e)` then :math:`P_H[h(p) = h(q)] <= p_2`. As defined, nearby points within a distance of :math:`r` to each other are likely to collide with probability :math:`p_1`. In contrast, distant points which are located with the distance more than :math:`r(1 + e)` have a small probability of :math:`p_2` of collision. Suppose there is a family of LSH function :math:`H`. An *LSH index* is built as follows: 1. Choose :math:`k` functions :math:`h_1, h_2, … h_k` uniformly at random (with replacement) from :math:`H`. For any :math:`p \in S`, place :math:`p` in the bucket with label :math:`g(p) = (h_1(p), h_2(p), … h_k(p))`. Observe that if each :math:`h_i` outputs one “digit”, each bucket has a k-digit label. 2. Independently perform step 1 :math:`l` times to construct :math:`l` separate estimators, with hash functions :math:`g_1, g_2, … g_l`. The reason to concatenate hash functions in the step 1 is to decrease the probability of the collision of distant points as much as possible. The probability drops from :math:`p_2` to :math:`p_2^k` which is negligibly small for large :math:`k`. The choice of :math:`k` is strongly dependent on the data set size and structure and is therefore hard to tune in practice. There is a side effect of having a large :math:`k`; it has the potential of decreasing the chance of nearby points getting collided. To address this issue, multiple estimators are constructed in step 2. The requirement to tune :math:`k` for a given dataset makes classical LSH cumbersome to use in practice. The LSH Forest variant has benn designed to alleviate this requirement by automatically adjusting the number of digits used to hash the samples. LSH Forest is formulated with prefix trees with each leaf of a tree corresponding to an actual data point in the database. There are :math:`l` such trees which compose the forest and they are constructed using independently drawn random sequence of hash functions from :math:`H`. In this implementation, "Random Projections" is being used as the LSH technique which is an approximation for the cosine distance. The length of the sequence of hash functions is kept fixed at 32. Moreover, a prefix tree is implemented using sorted arrays and binary search. There are two phases of tree traversals used in order to answer a query to find the :math:`m` nearest neighbors of a point :math:`q`. First, a top-down traversal is performed using a binary search to identify the leaf having the longest prefix match (maximum depth) with :math:`q`'s label after subjecting :math:`q` to the same hash functions. :math:`M >> m` points (total candidates) are extracted from the forest, moving up from the previously found maximum depth towards the root synchronously across all trees in the bottom-up traversal. `M` is set to :math:`cl` where :math:`c`, the number of candidates extracted from each tree, is a constant. Finally, the similarity of each of these :math:`M` points against point :math:`q` is calculated and the top :math:`m` points are returned as the nearest neighbors of :math:`q`. Since most of the time in these queries is spent calculating the distances to candidates, the speedup compared to brute force search is approximately :math:`N/M`, where :math:`N` is the number of points in database. .. topic:: References: * `"Near-Optimal Hashing Algorithms for Approximate Nearest Neighbor in High Dimensions" `_, Alexandr, A., Indyk, P., Foundations of Computer Science, 2006. FOCS '06. 47th Annual IEEE Symposium * `“LSH Forest: Self-Tuning Indexes for Similarity Search” `_, Bawa, M., Condie, T., Ganesan, P., WWW '05 Proceedings of the 14th international conference on World Wide Web Pages 651-660