[][src]Struct linfa_clustering::AppxDbscanHyperParams

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

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

Implementations

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

pub fn new(min_points: usize) -> AppxDbscanHyperParamsBuilder<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
  • slack = 1e-2

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

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

Approximation factor, allows the distance between two points for them to be considered neighbours to reach tolerance * (1 + slack)

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

Trait Implementations

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

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

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

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

impl<F: Float, D: Data<Elem = F>> Transformer<&'_ ArrayBase<D, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<Option<usize>>, Dim<[usize; 1]>>> for AppxDbscanHyperParams<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 AppxDbscanHyperParams<F>[src]

Auto Trait Implementations

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

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

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

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

impl<F> UnwindSafe for AppxDbscanHyperParams<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>,