So basically, Iâve been wanting to learn a âlower-endâ language, please donât cringe yet.
Learn > ML > Rust
Yes I know.
But, most of my knowledge being completely in Javascript, and Python( YES PYTHON JUST DO ML IN PYTHON ASHDKJAS ) no.
( Just let me fuck up in rust in peace please ( I will take your two cents tho always <3 ) )
I am just curious how is the ML ecosystem in Rust in 2023? Viable? Doable? Plausible?
EDIT: I will say, I do have some data gathered with Python, just need to clean it so I will be using my own data.
Edit 2x: Give your ML language recommendations for someone wanting to learn a âlower-endâ programming language. I plan on using something prediction based such as like Recurrent neural networks
Comments
AutoModerator ⢠1 points ⢠2023-06-19
On July 1st, Reddit will no longer be accessible via third-party apps. Please see our position on this topic, as well as our list of alternative Rust discussion venues.
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
tinkr_ ⢠11 points ⢠2023-06-19
There are fairly decent torch bindings in Rust. In fact, if you check out the Twitter source code that Elon released youâll see they used Rust for at least one of their ML models.
Also, the Polars dataframe library in Python is just Python bindings on a Rust crate which you can just use purely in Rust.
drag0nryd3r ⢠4 points ⢠2023-06-19
In the Twitter algorithm source code, I remember seeing Rust but it was used for âservingâ ML models. Did they also directly use Rust for ML?
tinkr_ ⢠2 points ⢠2023-06-20
The ML model they use to generate predictions is a torch model coded directly in Rust: https://github.com/twitter/the-algorithm/blob/main/navi/navi/src/torch_model.rs
Not sure what you mean by âuse Rust for MLâ exactly, but their torch models are definitely Rust models in their final form. Whether the EDA and model training was done in something like Python and they just reimplemented the trained torch model in Rust for productionalization I canât say.
drag0nryd3r ⢠6 points ⢠2023-06-19
Iâm no expert in this field, Iâm merely exploring so I donât know how good Rust is for ML right now. But I think polars, ndarray and linfa would be a good place to start.
Also, have a look around this site which is tracking the state of ML in Rust: Are We Learning Yet
Normal_Rough_7958 ⢠3 points ⢠2023-06-19
Preciate the responses everyone Iâll give the link a run through, finish cleaning my data tomorrow then Iâll dive into some Rust. Wish me luck! :)
Awpteamoose ⢠3 points ⢠2023-06-19
dfdx is really good: https://crates.io/crates/dfdx
met0xff ⢠3 points ⢠2023-06-19
torch-rs is a pretty legit binding although of course the official C++ API got more docs and examples. Huggingface also got a few Rust things lying around.
But honestly just using C++ or Rust to call torch wonât require lots of low level thinking, if at all. Still reasonable to use them to learn the language. My first reasonable Rust program was also porting some Python pytorch inference code to Rust (actually first there was a C++ version as well).
Honestly I donât do any ML work with Rust anymore but donât regret it ;)
Normal_Rough_7958 ⢠2 points ⢠2023-06-19
You just simply stick with python? Excited for Mojo?
My question is do the people getting real down and nasty with ML do they actually work in C++ or just simply use the python ports. More than likely both I would assume
met0xff ⢠4 points ⢠2023-06-20
Iâve started my career in embedded dev and have quite a bit of experience with C++ so when I got into ML I was quite happy about the idea of embedded ML and actually then I did touch C or C++ quite often because it was before the big deep learning frameworks came up. Lots of C libraries duct taped together with Perl and Shell scripts and Tcl and Scheme and what not. Matlab everywhere as well. Itâs nice Python replaced this mess. Spyder was also a similar experience to Matlab and still liked it more than jupyter but the latter is just better supported (besides that I do most of my work in vscode)
At some point I did implement LSTMs in Eigen to run on mobile, manually exported weights from Theano etc.
But meanwhile I havenât touched C++ in years because for one itâs mostly just exporting as torchscript or ONNX and then using a runtime thatâs much better than my crap⌠and also because there were so few customers who were really interested in integrating a library into their app or similar (really just a handful of assistive technology providers and toy robots). At some point everyone was just asking for an API endpoint .
At some point I started learning CUDA because I wanted to build a memory resident version of Wavenet (because the auto-regression of the original formulation made it to slow that it took minutes for a few seconds of audio on GPU). But before I even started the project itself there was already https://github.com/NVIDIA/nv-wavenet and even more - GAN-based models which were running on CPU in realtime without any specific tuning.
Ever since itâs such a rat race that I barely even get to polish python code because every 2 weeks thereâs a new big thing around thatâs much better and we also need lol.
All that being said, I got some contacts in robotics and similar fields and they definitely got people working with C++ and CUDA. And one single group working with Julia.
I was mildly excited about swift 4 Tensorflow, Julia, even differentiable Kotlin but at this point python and pytorch are really heavily cemented in the field. So I think the Mojo approach is smart although I donât know yet if it will be able to compile all the big libraries as well or how that will work. And if it will offer more than âjustâ performance. Because as mentioned, at this point I donât even get close to worrying about performance ;). Besides not adopting models that are clearly super slow already
Normal_Rough_7958 ⢠1 points ⢠2023-06-20
Okay cool, I appreciate the time you put into the response as well much respect.
So you have pretty much given me my answer. Iâll stick with python for my ML task, Iâll have to rethink a way of how I can implement Rust into the project some way some how, Iâm still basically virgin programmer compared to some of you folks, So Iâll get in where I can fit in. If you have any cool ideas of how I could possibly implement Rust into project let me know, I know I could just use it for the webserver but ugh I wanna do more than that.
Affectionate_Fish194 ⢠1 points ⢠2023-06-19
I tested some of these before like dfdx and torch and also i try to make my own autograde and keras like take a look
Aspected1337 ⢠1 points ⢠2023-06-19
I am also a victim of the use Rust for ML because those are two things I am really interested in; from my experience you have to be more specific about your goal:
If you want use Rust for your ML projects it has its benefits but itâs kind of like shooting yourself in the foot. Itâs more fun but you donât have nearly as much library support or much of a community either. You can do data processing in Rust which is often a good idea imo, but implementing the actual ML code in Rust is quite restricting. The bindings people usually bring up are valid points - but why use the bindings when you can use the real thing with less friction?
The question you should ask yourself: Do you want to get things done or do you want to have fun? Both questions are correct. I think most people desire getting things done over fun, but end up taking the fun route anyways and subconsciously make excuses to rationalize that decision Such as: âoh Rust is better than Python here cause the enums are useful for when specific types for your ML modelâ; sure, enums are nice but Python has way more features that will make your projects progress faster.
Normal_Rough_7958 ⢠2 points ⢠2023-06-19
Well of course Iâd love to say both please fun and get things done. I have slim to none experience in both Rust and ML made a web-scraper in rust, and displayed some information on a frontend with react in the lil project using rocket and all that.
So even in python the modules use c++, I mean should I go balls deep into like C++ for it? I really do not want too, as I was trying to avoid that hoping rust had a more fleshed out ecosystem in 2023. My goal is to just start learning a language that can communicate a little lower down I wanted to choose Rust because um duh but. Yeah I appreciate the time put into your response.
Normal_Rough_7958 ⢠1 points ⢠2023-06-19
As far as ACTUAL GOAL, is just simply to learn by doing, usually my goal with any âprojectâ I put into my mind, I only have around 4 years of experience off and on, more so on the last two years, so havenât built any actual ML model, havenât done anything like that so yes this probably sounds stupidly ambitious if you wanna say it like that.