Comment on From Python to Elixir Machine LearningparentComments−substation133yYes, it can be.1. Loading data2. Running algorithms that benefit from shared memory3. Serving the model (if it's not being output to some portable format)There are also general benefits of using one language across a project. Because Python is weak on these things, we end up using multiple languages.
Comments
Yes, it can be.
1. Loading data
2. Running algorithms that benefit from shared memory
3. Serving the model (if it's not being output to some portable format)
There are also general benefits of using one language across a project. Because Python is weak on these things, we end up using multiple languages.