Checking the versions of the SageMaker Python SDK and the AWS CLI
In this recipe, we will check the SageMaker Python SDK version inside a notebook running the conda_python3
kernel. The SageMaker Python SDK is a library that helps data scientists and ML practitioners to train and deploy ML models on Amazon SageMaker. Knowing the version of this is critical as there are several differences between Version 1.X and Version 2.X of the SageMaker Python SDK. In this book, we will use Version 2.X.
Getting ready
Make sure you have completed the Launching an Amazon SageMaker notebook instance and preparing the prerequisites recipe.
How to do it…
The first set of steps in this recipe focus on checking the SageMaker Python SDK version:
- Click New and then choose conda_python3 in the drop-down list:
We can see in Figure 1.17 that there are several environments to choose from when creating a new...