Technical requirements
All the code examples in this book are available as Jupyter notebooks that can be downloaded from https://github.com/PacktPublishing/Automated-Machine-Learning-with-AutoKeras.
Since code cells can be executed, each notebook can be self-installed; simply add the code snippet that contains the requirements you need. For this reason, at the beginning of each notebook, there is a code cell for environment setup that installs AutoKeras and its dependencies.
So, to run the code examples in this chapter, you only need a computer with Ubuntu Linux as its OS and must install the Jupyter Notebook with the following line of code:
$ apt-get install python3-pip jupyter-notebook
Alternatively, you can also run these notebooks using Google Colaboratory, in which case you will only need a web browser. See Chapter 2, AutoKeras with Google Colaboratory, for more details. Furthermore, in the Installing AutoKeras section of that chapter, you will find other installation...