James Phoenix

Results 3 comments of James Phoenix

Thanks for finding the bug guys, really appreciate this!

Here is my current library to provide some context ```rust use linfa::traits::Fit; use linfa::traits::Predict; use linfa::DatasetBase; use linfa_clustering::KMeans; use linfa_nn::distance::LInfDist; use ndarray::Array2; use ndarray_rand::rand::SeedableRng; use rand_xoshiro::Xoshiro256Plus; use serde::{Deserialize, Serialize}; use...