For questions related to the Rust programming language in relation to AI. See the on-topic page to make sure your question is on-topic. Do not ask questions about programming issues.
Questions tagged [rust]
3 questions
7
votes
1 answer
Whys and Why-nots using Rust for AI
The title says it all. I would like to know more about what attributes and design choices of Rust that make it a good (or bad) language for the entire ecosystem of AI (both research and production)
What I know so far:
Rust is memory safe (unlike…
hongshan.li
- 128
- 1
- 1
- 6
1
vote
1 answer
A Feedforward Neural Network (FNN) implemented with RMSProp optimization is exhibiting a tendency to overclassify instances into one particular class
I'm coding an FNN in Rust using the nalgebra crate. I coded the backpropagation based on this article from Brilliant (the link directly highlights the formulas' section I).
The issue
My network tends to overclassify one class. See logs of some…
Evry
- 13
- 3
0
votes
1 answer
I'm trying to train an AI but I have low accuracy using rust and pytorch
I'm just starting out in the world of machine learning and I really like Rust. I've been testing and learning more. I'd like to thank you for your support in advance.
I took the example of transfer training and did some tests, but I can't understand…