klaster 0.2.0

Machine learning library providing modern clusterning algorithms for the Rust programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2025 Piotr Jabłoński
// Extended copyright information can be found in the LICENSE file.

mod kmeans;
pub use kmeans::{KMeans, KMeansFitted, KMeansInit};

mod sdc;
pub use sdc::{
    Autoencoder, AutoencoderConfig, ClusteringOutput, SDC, SDCConfig, TrainingConfig,
    dataset::{Dataset, DatasetSplit},
    infer, train,
};

pub mod metric;