Struct hdbscan::HdbscanHyperParams
source · pub struct HdbscanHyperParams { /* private fields */ }Expand description
A wrapper around the various hyper parameters used in HDBSCAN clustering.
Only use if you want to tune hyper parameters. Otherwise use Hdbscan::default() to
instantiate the model with default hyper parameters.
Implementations§
source§impl HdbscanHyperParams
impl HdbscanHyperParams
sourcepub fn builder() -> HyperParamBuilder
pub fn builder() -> HyperParamBuilder
Enters the builder pattern, allowing custom hyper parameters to be set using various setter methods.
§Returns
- the hyper parameter configuration builder
Auto Trait Implementations§
impl Freeze for HdbscanHyperParams
impl RefUnwindSafe for HdbscanHyperParams
impl Send for HdbscanHyperParams
impl Sync for HdbscanHyperParams
impl Unpin for HdbscanHyperParams
impl UnwindSafe for HdbscanHyperParams
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