Struct linfa_clustering::DbscanValidParams
source · pub struct DbscanValidParams<F: Float, D: Distance<F>, N: NearestNeighbour> { /* private fields */ }
Expand description
The set of hyperparameters that can be specified for the execution of the DBSCAN algorithm.
Implementations§
source§impl<F: Float, D: Distance<F>, N: NearestNeighbour> DbscanValidParams<F, D, N>
impl<F: Float, D: Distance<F>, N: NearestNeighbour> DbscanValidParams<F, D, N>
sourcepub fn minimum_points(&self) -> usize
pub fn minimum_points(&self) -> usize
Minimum number of neighboring points a point needs to have to be a core
point and not a noise point.
Trait Implementations§
source§impl<F: Clone + Float, D: Clone + Distance<F>, N: Clone + NearestNeighbour> Clone for DbscanValidParams<F, D, N>
impl<F: Clone + Float, D: Clone + Distance<F>, N: Clone + NearestNeighbour> Clone for DbscanValidParams<F, D, N>
source§fn clone(&self) -> DbscanValidParams<F, D, N>
fn clone(&self) -> DbscanValidParams<F, D, N>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more