The Python libraries required for this chapter are as follows:
- matplotlib 3.0.2
- Keras 2.2.4
- seaborn 0.9.0
- scikit-learn 0.20.2
The code for this chapter can be found in the GitHub repository for the book.
To download the code onto your computer, you may run the following git clone command:
$ git clone https://github.com/PacktPublishing/Neural-Network-Projects-with-Python.git
After the process is complete, there will be a folder entitled Neural-Network-Projects-with-Python. Enter the folder by running the following:
$ cd Neural-Network-Projects-with-Python
To install the required Python libraries in a virtual environment, run the following command:
$ conda env create -f environment.yml
Note that you should have installed Anaconda on your computer first, before running this command. To enter the virtual environment, run the following command:
$ conda activate...