GitHub location
The code for this book is located in the following public GitHub repository:
https://github.com/PacktPublishing/Advanced-Natural-Language-Processing-with-TensorFlow-2
Please clone this repository to access all the code for the book. Please note that seminal papers for each of the chapters are included in the GitHub repository inside each chapter's directory.
Now, the common steps to set up the conda
environment are explained below:
- Step 1: Create a new
conda
environment with Python 3.7.5:$ conda create -n tf24nlp python==3.7.5
The environment is named
tf24nlp
but feel free to use your own name and make sure you use that in the following steps. I like to prefix my environment names with the version of TensorFlow being used and I suffix a "g" if that environment has a GPU version of the library. As you can probably infer, we are going to use TensorFlow 2.4. - Step 2: Activate the environment and...