项目文件夹

文件
Elías Snorrason 71ba4b3209 Add a knn module (#1117)
Co-authored-by: Jonas Mueller <1390638+jwmueller@users.noreply.github.com>
2024-05-14 13:59:15 -04:00

22 行
711 B
ReStructuredText

neighbor
========
The `neighbor` modules provide functionality for performing nearest neighbor search and pairwise distance calculations in those searches.
This submodule consists of the following modules:
- `neighbor.knn_graph`: Contains functions for setting up a nearest neighbor search index and constructing knn graphs.
- `neighbor.search`: Contains a helper function that wraps the default implementation of nearest neighbor searches.
- `neighbor.metric`: Contains functions for selecting distance metrics for nearest neighbor searches.
.. automodule:: cleanlab.internal.neighbor
:autosummary:
:members:
:undoc-members:
:show-inheritance:
.. toctree::
knn_graph
metric
search