Book Image

Getting Started with Amazon SageMaker Studio

By : Michael Hsieh
Book Image

Getting Started with Amazon SageMaker Studio

By: Michael Hsieh

Overview of this book

Amazon SageMaker Studio is the first integrated development environment (IDE) for machine learning (ML) and is designed to integrate ML workflows: data preparation, feature engineering, statistical bias detection, automated machine learning (AutoML), training, hosting, ML explainability, monitoring, and MLOps in one environment. In this book, you'll start by exploring the features available in Amazon SageMaker Studio to analyze data, develop ML models, and productionize models to meet your goals. As you progress, you will learn how these features work together to address common challenges when building ML models in production. After that, you'll understand how to effectively scale and operationalize the ML life cycle using SageMaker Studio. By the end of this book, you'll have learned ML best practices regarding Amazon SageMaker Studio, as well as being able to improve productivity in the ML development life cycle and build and deploy models easily for your ML use cases.
Table of Contents (16 chapters)
1
Part 1 – Introduction to Machine Learning on Amazon SageMaker Studio
4
Part 2 – End-to-End Machine Learning Life Cycle with SageMaker Studio
11
Part 3 – The Production and Operation of Machine Learning with SageMaker Studio

Developing and collaborating using SageMaker Notebook

The SageMaker Studio IDE makes collaboration and customization easy. Besides the freedom of choosing the kernel and instance backing a SageMaker notebook, you could also manage Git repositories, compare notebooks, and share notebooks.

Users can interact with a Git repository easily in SageMaker Studio, and you may have already done so to clone the sample repository from GitHub for this book. Not only can you clone a repository from a system terminal, you can also use the Git integration in the left sidebar in the UI to graphically interact with your code base, as shown in Figure 5.4. You can conduct actions you would normally do in Git with the UI: switching branches, pull, commit, and push.

Figure 5.4 – Graphical interface of Git integration in the SageMaker Studio IDE

You can also perform notebook diff on a changed file by right-clicking on the changed file and selecting Diff, as shown in Figure...