[][src]Struct linfa_clustering::DbscanHyperParams

pub struct DbscanHyperParams<F: Float> { /* fields omitted */ }

The set of hyperparameters that can be specified for the execution of the DBSCAN algorithm.

Implementations

impl<F: Float> DbscanHyperParams<F>[src]

pub fn new(min_points: usize) -> DbscanHyperParamsBuilder<F>[src]

Minimum number of neighboring points a point needs to have to be a core point and not a noise point.

Defaults are provided if the optional parameters are not specified:

  • tolerance = 1e-4

pub fn tolerance(&self) -> F[src]

Two points are considered neighbors if the euclidean distance between them is below the tolerance

pub fn minimum_points(&self) -> usize[src]

Minimum number of a points in a neighborhood around a point for it to not be considered noise

Trait Implementations

impl<F: Clone + Float> Clone for DbscanHyperParams<F>[src]

impl<F: Debug + Float> Debug for DbscanHyperParams<F>[src]

impl<F: PartialEq + Float> PartialEq<DbscanHyperParams<F>> for DbscanHyperParams<F>[src]

impl<F: Float> StructuralPartialEq for DbscanHyperParams<F>[src]

impl<F: Float, D: Data<Elem = F>> Transformer<&'_ ArrayBase<D, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<Option<usize>>, Dim<[usize; 1]>>> for DbscanHyperParams<F>[src]

impl<F: Float, D: Data<Elem = F>, T: Targets> Transformer<DatasetBase<ArrayBase<D, Dim<[usize; 2]>>, T>, DatasetBase<ArrayBase<D, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<Option<usize>>, Dim<[usize; 1]>>>> for DbscanHyperParams<F>[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for DbscanHyperParams<F> where
    F: RefUnwindSafe
[src]

impl<F> Send for DbscanHyperParams<F>[src]

impl<F> Sync for DbscanHyperParams<F>[src]

impl<F> Unpin for DbscanHyperParams<F> where
    F: Unpin
[src]

impl<F> UnwindSafe for DbscanHyperParams<F> where
    F: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,