19.2. Using Amazon SageMaker¶ Open the notebook in SageMaker Studio Lab
Many deep learning applications require a significant amount of computation. Your local machine might be too slow to solve these problems in a reasonable amount of time. Cloud computing services give you access to more powerful computers to run the GPU-intensive portions of this book. This tutorial will guide you through Amazon SageMaker: a service that allows you to run this book easily.
19.2.1. Registering and Logging In¶
First, we need to register an account at https://aws.amazon.com/. We encourage you to use two-factor authentication for additional security. It is also a good idea to set up detailed billing and spending alerts to avoid any unexpected surprises in case you forget to stop any running instance. Note that you will need a credit card. After logging into your AWS account, go to your console and search for “SageMaker” (see Fig. 19.2.1) then click to open the SageMaker panel.
19.2.2. Creating a SageMaker Instance¶
Next, let us create a notebook instance as described in Fig. 19.2.2.
SageMaker provides multiple instance
types of
different computational power and prices. When creating an instance, we
can specify the instance name and choose its type. In
Fig. 19.2.3, we choose ml.p3.2xlarge
. With
one Tesla V100 GPU and an 8-core CPU, this instance is powerful enough
for most chapters.
A Jupyter notebook version of this book for fitting SageMaker is available at https://github.com/d2l-ai/d2l-en-sagemaker. We can specify this GitHub repository URL to let SageMaker clone this repository during instance creation, as shown in Fig. 19.2.4.
A Jupyter notebook version of this book for fitting SageMaker is available at https://github.com/d2l-ai/d2l-pytorch-sagemaker. We can specify this GitHub repository URL to let SageMaker clone this repository during instance creation, as shown in Fig. 19.2.4.
A Jupyter notebook version of this book for fitting SageMaker is available at https://github.com/d2l-ai/d2l-tensorflow-sagemaker. We can specify this GitHub repository URL to let SageMaker clone this repository during instance creation, as shown in Fig. 19.2.4.
19.2.3. Running and Stopping an Instance¶
It may take a few minutes before the instance is ready. When it is ready, you can click on the “Open Jupyter” link as shown in Fig. 19.2.5.
Then, as shown in Fig. 19.2.6, you may navigate through the Jupyter server running on this instance.
Running and editing Jupyter notebooks on the SageMaker instance is similar to what we have discussed in Section 19.1. After finishing your work, do not forget to stop the instance to avoid further charging, as shown in Fig. 19.2.7.
19.2.4. Updating Notebooks¶
We will regularly update the notebooks in the
d2l-ai/d2l-en-sagemaker
GitHub repository. You can simply use the git pull
command to update
to the latest version.
We will regularly update the notebooks in the
d2l-ai/d2l-pytorch-sagemaker
GitHub repository. You can simply use the git pull
command to update
to the latest version.
We will regularly update the notebooks in the
d2l-ai/d2l-tensorflow-sagemaker
GitHub repository. You can simply use the git pull
command to update
to the latest version.
First, you need to open a terminal as shown in Fig. 19.2.8.
You may want to commit your local changes before pulling the updates. Alternatively, you can simply ignore all your local changes with the following commands in the terminal.
cd SageMaker/d2l-en-sagemaker/
git reset --hard
git pull
cd SageMaker/d2l-pytorch-sagemaker/
git reset --hard
git pull
cd SageMaker/d2l-tensorflow-sagemaker/
git reset --hard
git pull
19.2.5. Summary¶
We can launch and stop a Jupyter server through Amazon SageMaker to run this book.
We can update notebooks via the terminal on the Amazon SageMaker instance.
19.2.6. Exercises¶
Try to edit and run the code in this book using Amazon SageMaker.
Access the source code directory via the terminal.