wasm4pm 26.6.12

High-performance process mining algorithms in WebAssembly for JavaScript/TypeScript
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! ML algorithms for process mining (Re-exports from Nanosecond Algorithm Families)

#[cfg(feature = "ml")]
pub use crate::ml::automl::{discover_automl_classify, discover_automl_forecast};
#[cfg(feature = "ml")]
pub use crate::ml::classification::discover_ml_classify;
#[cfg(feature = "ml")]
pub use crate::ml::forecasting::discover_ml_forecast;
#[cfg(feature = "ml")]
pub use crate::ml::pca::discover_ml_pca;
#[cfg(feature = "ml")]
pub use crate::ml::regression::{discover_ml_regress, discover_ml_regress_automl};