If you spend much time learning and applying machine learning, you will see a bunch of references to matrices and vectors. In fact, many machine learning algorithms boil down to a series of iterative operations on matrices. What are matrices and vectors, and how do we represent them in our Go programs?
For the most part, we will utilize packages from github.com/gonum to form and work with matrices and vectors. This is a great series of Go packages focused on numerical computing, and they just keep getting better and better.