Struct linfa_clustering::DbscanParams [−][src]
pub struct DbscanParams<F: Float, D: Distance<F>, N: NearestNeighbour>(_);
Expand description
Helper struct for building a set of DBSCAN hyperparameters
Implementations
Trait Implementations
impl<F: Debug + Float, D: Debug + Distance<F>, N: Debug + NearestNeighbour> Debug for DbscanParams<F, D, N>
impl<F: Debug + Float, D: Debug + Distance<F>, N: Debug + NearestNeighbour> Debug for DbscanParams<F, D, N>
type Checked = DbscanValidParams<F, D, N>
type Checked = DbscanValidParams<F, D, N>
The checked hyperparameters
type Error = DbscanParamsError
type Error = DbscanParamsError
Error type resulting from failed hyperparameter checking
Checks the hyperparameters and returns a reference to the checked hyperparameters if successful Read more
Checks the hyperparameters and returns the checked hyperparameters if successful
Calls check()
and unwraps the result