This will be really funny, until you remember 99% of current super hyped AI stuff is running on Python
This will be really funny, until you remember 99% of current super hyped AI stuff is running on Python
(Please don't lob rocks at me. I love Python.)
To be fair, Python is just glue for code written in lower level languages when it comes to AI
A lot of it is c in a python raincoat
Which can be ASM in a C raincoat
The underlining linear algebra routines are written in… FORTRAN.
Does one even have to actually write Python code, except for frontends? I'd assume you just load the model, weights and maybe training data into pytorch/tensorflow.
Doesn't seem to be the case, some popular servers:
And then of course talking to these servers can be in any language that has a library for it or even just handles network requests, although Python is a nice choice. Possibly the process of training models is more heavy on the Python dependencies than inference is, haven't actually done anything with that though.