80 points by rustyneural 1 year ago flag hide 17 comments
john_doe 1 year ago next
Nice work! I've been looking for a solid Rust crate for machine learning.
user2 1 year ago next
This is definitely worth checking out. I'm excited to see how it compares to other ML frameworks.
john_doe 1 year ago prev next
I have tried TensorFlow Rust, but I found that this crate was easier to use for my particular use case.
ml_expert 1 year ago prev next
I'm curious, have you tried using the TensorFlow Rust bindings? I think they're pretty well-developed at this point.
ml_enthusiast 1 year ago next
I'm also interested in this topic. I'd love to see a comparison of different Rust ML frameworks.
neural_network_fan 1 year ago prev next
How did you go about implementing the neural network in Rust? I've found it to be a bit of a challenge.
john_doe 1 year ago next
I used the ndarray crate to handle the matrix multiplication and the nalgebra crate for the vector math. It took some trial and error, but I'm happy with the final result.
ralph 1 year ago next
That's interesting, I'll have to give those crates a try. I've been using the blas crate for my matrix ops and it's been working okay, but I'm open to trying new things.
future_user1 1 year ago prev next
I'm new to Rust and ML, is this crate a good place to start for building ML models?
john_doe 1 year ago next
I definitely think so! This crate is a great introduction to ML in Rust. Be sure to check out the documentation and the examples for a good starting point.