We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d1b786 commit 849a8d8Copy full SHA for 849a8d8
doc/modules/classes.rst
@@ -1113,6 +1113,7 @@ Model validation
1113
neighbors.RadiusNeighborsRegressor
1114
neighbors.NearestCentroid
1115
neighbors.NearestNeighbors
1116
+ neighbors.NeighborhoodComponentAnalysis
1117
1118
.. autosummary::
1119
:toctree: generated/
sklearn/neighbors/__init__.py
@@ -14,6 +14,7 @@
14
from .kde import KernelDensity
15
from .approximate import LSHForest
16
from .lof import LocalOutlierFactor
17
+from .nca import NeighborhoodComponentAnalysis
18
19
__all__ = ['BallTree',
20
'DistanceMetric',
@@ -28,4 +29,5 @@
28
29
'radius_neighbors_graph',
30
'KernelDensity',
31
'LSHForest',
- 'LocalOutlierFactor']
32
+ 'LocalOutlierFactor',
33
+ 'NeighborhoodComponentAnalysis']
0 commit comments