1 2 3 4 5 6 7 8
pub mod builtin; pub mod generators; #[cfg(feature = "datasets")] pub mod ucr; /// Train/test split: (x_train, x_test, y_train, y_test) pub type TrainTestSplit = (Vec<Vec<f64>>, Vec<Vec<f64>>, Vec<String>, Vec<String>);