In order to run the code excerpts given in this chapter, you will need the following hardware and software:
- TensorFlow 2.0 (TF 2.0) or higher (either of the CPU or GPU versions will suffice)
- Python 3.4+ (currently, the highest Python version supported by TensorFlow is 3.6)
- NumPy (if not automatically installed by TensorFlow)
- Docker (see Chapter 1, Getting Started with TensorFlow 2.0, for details on how to install Docker)
- curl (https://curl.haxx.se/docs/install.html)
- A Linux machine with a command-line interface
Each one of the Python code snippets in this chapter assumes that TF 2.0 is installed and has already been imported into the namespace. This means that, before executing any code block, please type in the following line first:
import tensorflow as tf
The code files for this chapter are available at https://github.com/PacktPublishing/What-s-New...