Book Image

Hands-On Automated Machine Learning

By : Sibanjan Das, Umit Mert Cakmak
Book Image

Hands-On Automated Machine Learning

By: Sibanjan Das, Umit Mert Cakmak

Overview of this book

AutoML is designed to automate parts of Machine Learning. Readily available AutoML tools are making data science practitioners’ work easy and are received well in the advanced analytics community. Automated Machine Learning covers the necessary foundation needed to create automated machine learning modules and helps you get up to speed with them in the most practical way possible. In this book, you’ll learn how to automate different tasks in the machine learning pipeline such as data preprocessing, feature selection, model training, model optimization, and much more. In addition to this, it demonstrates how you can use the available automation libraries, such as auto-sklearn and MLBox, and create and extend your own custom AutoML components for Machine Learning. By the end of this book, you will have a clearer understanding of the different aspects of automated Machine Learning, and you’ll be able to incorporate automation tasks using practical datasets. You can leverage your learning from this book to implement Machine Learning in your projects and get a step closer to winning various machine learning competitions.
Table of Contents (10 chapters)

Supervised ML

Apart from feature transformations mentioned in the previous section, each ML algorithm has its own hyperparameter space to be optimized. You can think of searching the best ML pipeline as going through your configuration space and trying out your options in a smart way to find the best performing ML pipeline.

Auto-sklearn is very helpful in achieving that goal and the example that you have seen in the introductory chapter showed you the ease of use of the library. This section will explain what's happening under the hood to make this implementation successful.

Auto-sklearn uses meta learning to select promising data/feature processors and ML algorithms based on properties of the given dataset. Please refer to the following links for the list of preprocessing methods, classifiers, and regressors: