
- 282 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
Hands-On Automated Machine Learning
About this book
Automate data and model pipelines for faster machine learning applicationsAbout This Book⢠Build automated modules for different machine learning components⢠Understand each component of a machine learning pipeline in depth⢠Learn to use different open source AutoML and feature engineering platformsWho This Book Is ForIf you're a budding data scientist, data analyst, or Machine Learning enthusiast and are new to the concept of automated machine learning, this book is ideal for you. You'll also find this book useful if you're an ML engineer or data professional interested in developing quick machine learning pipelines for your projects. Prior exposure to Python programming will help you get the best out of this book.What You Will Learn⢠Understand the fundamentals of Automated Machine Learning systems⢠Explore auto-sklearn and MLBox for AutoML tasks ⢠Automate your preprocessing methods along with feature transformation⢠Enhance feature selection and generation using the Python stack⢠Assemble individual components of ML into a complete AutoML framework⢠Demystify hyperparameter tuning to optimize your ML models⢠Dive into Machine Learning concepts such as neural networks and autoencoders ⢠Understand the information costs and trade-offs associated with AutoMLIn DetailAutoML 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.Style and approachStep by step approach to understand how to automate your machine learning tasks
Tools to learn more effectively

Saving Books

Keyword Search

Annotating Text

Listen to it instead
Information
Automated Algorithm Selection
- Computational complexity
- Differences in training and scoring time
- Linearity versus non-linearity
- Algorithm-specific feature transformations
- You will have learned the basics of automated supervised learning and unsupervised learning
- You will have learned the main aspects to consider when working with ML pipelines
- You will have practiced your skills on various use cases and built supervised and unsupervised ML pipelines
Technical requirements
Computational complexity
Big O notation
# Importing necessary libraries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
# Setting the style of the plot
plt.style.use('seaborn-whitegrid')
# Creating an array of input sizes
n = 10
x = np.arange(1, n)
# Creating a pandas data frame for popular complexity classes
df = pd.DataFrame({'x': x,
'O(1)': 0,
'O(n)': x,
'O(log_n)': np.log(x),
'O(n_log_n)': n * np.log(x),
'O(n2)': np.power(x, 2), # Quadratic
'O(n3)': np.power(x, 3)}) # Cubic
# Creating labels
labels = ['$O(1) - Constant$',
'$O(\log{}n) - Logarithmic$',
'$O(n) - Linear$',
'$O(n^2) - Quadratic$',
'$O(n^3) - Cubic$',
'$O(n\log{}n) - N log n$']
# Plotting every column in dataframe except 'x'
for i, col in enumerate(df.columns.drop('x')):
print(labels[i], col)
plt.plot(df[col], label=labels[i])
# Adding a legend
plt.legend()
# Limiting the y-axis
plt.ylim(0,50)
plt.show()

Differences in training and scoring time
Table of contents
- Title Page
- Copyright and Credits
- Packt Upsell
- Contributors
- Preface
- Introduction to AutoML
- Introduction to Machine Learning Using Python
- Data Preprocessing
- Automated Algorithm Selection
- Hyperparameter Optimization
- Creating AutoML Pipelines
- Dive into Deep Learning
- Critical Aspects of ML and Data Science Projects
- Other Books You May Enjoy
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app