(no title)
notemaker | 2 years ago
To do that you only need to understand the fundamentals of tensors, some basic knowledge on what the big no-nos are within ML development so you can course correct your peers if they break them, and either focus on the operations side of things or deployment. In both cases, having a knack for optimizing bottlenecks will be very helpful since they will be present during both training and inference.
wmeredith|2 years ago
notemaker|2 years ago
That book should set you up with the fundamentals. Pytorch is the defacto standard right now for training; during deployment you will use whatever your deployment setup allows (e.g. embedded devices typically have their own inference frameworks).
Python is the lingua franca for anything in machine learning, but other languages are used where necessary for performance or for ecosystem benefits.
[1]: https://www.manning.com/books/deep-learning-with-python
c0mbonat0r|2 years ago