Book Image

Machine Learning With Go

Book Image

Machine Learning With Go

Overview of this book

The mission of this book is to turn readers into productive, innovative data analysts who leverage Go to build robust and valuable applications. To this end, the book clearly introduces the technical aspects of building predictive models in Go, but it also helps the reader understand how machine learning workflows are being applied in real-world scenarios. Machine Learning with Go shows readers how to be productive in machine learning while also producing applications that maintain a high level of integrity. It also gives readers patterns to overcome challenges that are often encountered when trying to integrate machine learning in an engineering organization. The readers will begin by gaining a solid understanding of how to gather, organize, and parse real-work data from a variety of sources. Readers will then develop a solid statistical toolkit that will allow them to quickly understand gain intuition about the content of a dataset. Finally, the readers will gain hands-on experience implementing essential machine learning techniques (regression, classification, clustering, and so on) with the relevant Go packages. Finally, the reader will have a solid machine learning mindset and a powerful Go toolkit of techniques, packages, and example implementations.
Table of Contents (11 chapters)

Decision trees and random forests

Tree-based models are very different from the previous types of models that we have discussed, but they are widely utilized and very powerful. You can think about a decision tree model like a series of if-then statements applied to your data. When you train this type of model, you are constructing a series of control flow statements that eventually allow you to classify records.

Decision trees are implemented in github.com/sjwhitworth/golearn and github.com/xlvector/hector, among others, and random forests are implemented in github.com/sjwhitworth/golearn, github.com/xlvector/hector, and github.com/ryanbressler/CloudForest, among others. We will utilize github.com/sjwhitworth/golearn again in our examples shown in the following section.

Overview of...