sbr-rs
sbr-rs copied to clipboard
Deep recommender systems for Rust
Results
2
sbr-rs issues
Sort by
recently updated
recently updated
newest added
In the example given in readme ``` use std::time::Instant; use rand; use rand::prng::XorShiftRng; use rand::SeedableRng; use sbr; fn main() { let mut data = sbr::datasets::download_movielens_100k().unwrap(); let mut rng = XorShiftRng::from_seed([42;...
Hi, I ran into an issue around multithreading support when running goodbooks-recommender () When instantiating hyperparameters with `num_threads` greater than the number of cores on my CPU - the task...