Auto-Keras is an open source software library for AutoML that aims at providing easy access to deep learning models. Auto-Keras has a number of features that allow you to automatically set up the architecture and parameters of deep learning models. Its ease of use, simple installation, and numerous examples make it a very popular framework. Auto-Keras was developed by the DATA Lab at Texas A and M University and community contributors.
Working with Auto-Keras
Getting ready
In this recipe, you will learn how to use the Auto-Keras library to classify handwritten digits. To install the Auto-Keras package, we can use the pip command, as follows:
$ pip install autokeras
At the time of writing this book, Auto-Keras was only compatible...