|
|
|
|
|
by mrdoops
1063 days ago
|
|
Elixir is good at doing a lot of things at once on - scaling to lots of machines - and not exploding catastrophically while doing so. Turns out this is really helpful for machine learning where you want to coordinate big data pipelines and do things like batching requests to a GPU resource (because GPUs want to be parallelized). You can do batched ML inference pretty much out of the box with Nx.Serving https://hexdocs.pm/nx/Nx.Serving.html where you'd have to spin up a separate third party service like https://developer.nvidia.com/triton-inference-server otherwise. |
|