Enum hdbscan::NnAlgorithm
source · pub enum NnAlgorithm {
Auto,
BruteForce,
KdTree,
}Expand description
The nearest neighbour algorithm options
Variants§
Auto
HDBSCAN internally selects the nearest neighbour based on size and dimensionality of the input data
BruteForce
Computes a distance matrix between each point and all others
KdTree
K-dimensional tree algorithm.
Auto Trait Implementations§
impl Freeze for NnAlgorithm
impl RefUnwindSafe for NnAlgorithm
impl Send for NnAlgorithm
impl Sync for NnAlgorithm
impl Unpin for NnAlgorithm
impl UnwindSafe for NnAlgorithm
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more