22 lines
719 B
Python
22 lines
719 B
Python
"""
|
|
The :mod:`sklearn.neighbors` module implements the k-nearest neighbors
|
|
algorithm.
|
|
"""
|
|
|
|
from .ball_tree import BallTree
|
|
from .graph import kneighbors_graph, radius_neighbors_graph
|
|
from .unsupervised import NearestNeighbors
|
|
from .classification import KNeighborsClassifier, RadiusNeighborsClassifier
|
|
from .regression import KNeighborsRegressor, RadiusNeighborsRegressor
|
|
from .nearest_centroid import NearestCentroid
|
|
|
|
__all__ = ['BallTree',
|
|
'KNeighborsClassifier',
|
|
'KNeighborsRegressor',
|
|
'NearestCentroid',
|
|
'NearestNeighbors',
|
|
'RadiusNeighborsClassifier',
|
|
'RadiusNeighborsRegressor',
|
|
'kneighbors_graph',
|
|
'radius_neighbors_graph']
|