formica 0.1.0

High-performance Rust clustering library for financial data analysis
Documentation
1
2
3
4
5
6
7
//! Self-Organizing Maps (SOM) clustering algorithm

pub mod algorithm;
pub mod config;

pub use algorithm::SOM;
pub use config::{SOMConfig, TopologyType};