Technical requirements
All coding examples in this book are available as Jupyter Notebook/s that can be downloaded from the following website: https://github.com/PacktPublishing/Automated-Machine-Learning-with-AutoKeras.
Jupyter Notebook provides a Python-based environment where code can be developed as a sequence of steps, which are called cells. The notebook also provides flexibility to install libraries/dependencies on the go by executing Linux-based commands in the cells.
So, to run the coding examples in this chapter, you only need a computer with Jupyter installed. For instance, in Ubuntu/Linux, you can install it with this line:
$ apt-get install python3-pip jupyter-notebook
The previous command will install the Jupyter notebook package and all its dependencies.
You can also take a look at the Installing AutoKeras on an Ubuntu Linux workstation section for more details.
Alternatively, you can also run these notebooks using Google Colaboratory, in which case...