pub struct HierarchicalClustering { /* private fields */ }Expand description
Hierarchical clustering kernel.
Agglomerative hierarchical clustering with various linkage methods.
Implementations§
Source§impl HierarchicalClustering
impl HierarchicalClustering
Sourcepub fn compute(
data: &DataMatrix,
n_clusters: usize,
linkage: LinkageMethod,
metric: DistanceMetric,
) -> ClusteringResult
pub fn compute( data: &DataMatrix, n_clusters: usize, linkage: LinkageMethod, metric: DistanceMetric, ) -> ClusteringResult
Run hierarchical clustering.
§Arguments
data- Input data matrixn_clusters- Number of clusters to formlinkage- Linkage methodmetric- Distance metric
Trait Implementations§
Source§impl BatchKernel<HierarchicalInput, HierarchicalOutput> for HierarchicalClustering
Hierarchical clustering batch kernel implementation.
impl BatchKernel<HierarchicalInput, HierarchicalOutput> for HierarchicalClustering
Hierarchical clustering batch kernel implementation.
Source§fn execute<'life0, 'async_trait>(
&'life0 self,
input: HierarchicalInput,
) -> Pin<Box<dyn Future<Output = Result<HierarchicalOutput>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn execute<'life0, 'async_trait>(
&'life0 self,
input: HierarchicalInput,
) -> Pin<Box<dyn Future<Output = Result<HierarchicalOutput>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Execute the kernel with the given input. Read more
Source§fn validate_input(&self, _input: &I) -> Result<(), KernelError>
fn validate_input(&self, _input: &I) -> Result<(), KernelError>
Validate the input before execution. Read more
Source§impl Clone for HierarchicalClustering
impl Clone for HierarchicalClustering
Source§fn clone(&self) -> HierarchicalClustering
fn clone(&self) -> HierarchicalClustering
Returns a duplicate 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 moreSource§impl Debug for HierarchicalClustering
impl Debug for HierarchicalClustering
Source§impl Default for HierarchicalClustering
impl Default for HierarchicalClustering
Source§impl GpuKernel for HierarchicalClustering
impl GpuKernel for HierarchicalClustering
Source§fn metadata(&self) -> &KernelMetadata
fn metadata(&self) -> &KernelMetadata
Returns the kernel metadata.
Source§fn requires_gpu_native(&self) -> bool
fn requires_gpu_native(&self) -> bool
Returns true if this kernel requires GPU-native execution.
Auto Trait Implementations§
impl Freeze for HierarchicalClustering
impl RefUnwindSafe for HierarchicalClustering
impl Send for HierarchicalClustering
impl Sync for HierarchicalClustering
impl Unpin for HierarchicalClustering
impl UnwindSafe for HierarchicalClustering
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.