aws-samples / amazon-sagemaker-local-mode

Amazon SageMaker Local Mode Examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Amazon SageMaker Local Mode Examples

AWS ML Docker Local Machine

This repository contains examples and related resources showing you how to preprocess, train, debug your training script with breakpoints, and serve on your local machine using Amazon SageMaker Local mode for processing jobs, training and serving.

SageMaker Studio now supports local mode and Docker: https://aws.amazon.com/about-aws/whats-new/2023/12/sagemaker-studio-local-mode-docker/

Overview

The local mode in the Amazon SageMaker Python SDK can emulate CPU (single and multi-instance) and GPU (single instance) SageMaker training jobs by changing a single argument in the TensorFlow, PyTorch or MXNet estimators. To do this, it uses Docker compose and NVIDIA Docker. It will also pull the Amazon SageMaker TensorFlow, PyTorch or MXNet containers from Amazon ECS, so you’ll need to be able to access a public Amazon ECR repository from your local environment.

For full details on how this works:

SageMaker local mode training and serving in PyCharm/Visual Studio Code

This repository examples will work in any IDE on your local machine.

Here you can see a TensorFlow example running on PyCharm. The data for processing, training and serving is also located on your local machine file system.

SageMaker local mode training in PyCharm

SageMaker local mode training in PyCharm

SageMaker local mode serving in PyCharm

SageMaker local mode serving in PyCharm

SageMaker local mode processing jobs in PyCharm

SageMaker local mode processing jobs in PyCharm

Debugging your training script running SageMaker local mode training in PyCharm

Debug your application

Repository Structure

The repository contains the following resources:

  • scikit-learn resources:

  • XGBoost resources:

  • TensorFlow resources:

    • TensorFlow Script Mode Training and Serving: This example shows how to train and serve your model with TensorFlow and SageMaker script mode, on your local machine using SageMaker local mode.
    • TensorFlow Script Mode Debug Training Script: This example shows how to debug your training script running inside a prebuilt SageMaker Docker image for TensorFlow, on your local machine using SageMaker local mode.
    • TensorFlow Script Mode Deploy a Trained Model and inference on file from S3: This example shows how to deploy a trained model to a SageMaker endpoint, on your local machine using SageMaker local mode, and inference with a file in S3 instead of http payload for the SageMaker Endpoint.
    • TensorFlow Script Mode Training and Batch Transform: This example shows how to train your model and run Batch Transform job with TensorFlow and SageMaker script mode, on your local machine using SageMaker local mode.
    • Extending SageMaker TensorFlow Deep Learning Container Image: In this example we show how to package a TensorFlow container, extending the SageMaker TensorFlow training container, with a Python example which works with the California Housing dataset. By extending the SageMaker TensorFlow container we can utilize the existing training solution made to work on SageMaker, leveraging SageMaker TensorFlow Estimator object, with entry_point parameter, specifying your local Python source file which should be executed as the entry point to training. To make it work, we replace the framework_version and py_version parameters, with image_uri of the Docker Image we have created. This sample code can run on your local machine using SageMaker local mode.
  • PyTorch resources:

  • Bring Your Own Container Training resources:

    • Bring Your Own Container TensorFlow Algorithm - Train/Serve: This example provides a detailed walkthrough on how to package a Tensorflow 2.5.0 algorithm for training and production-ready hosting. We have included also a Python file for local training and serving that can run on your local computer, for faster development.
    • Bring Your Own Container TensorFlow Algorithm - Train/Batch Transform: This example provides a detailed walkthrough on how to package a Tensorflow 2.5.0 algorithm for training, and then run a Batch Transform job on a CSV file. We have included also a Python file for local training and serving that can run on your local computer, for faster development.
    • Bring Your Own Container TensorFlow Algorithm - Serve without TensorFlow Serving: This example provides a detailed walkthrough on how to package a Tensorflow 2.5.0 algorithm for production-ready hosting without TensorFlow Serving. We have included also a Python file for local serving that can run on your local computer, for faster development.
    • Bring Your Own Container CatBoost Algorithm: This example provides a detailed walkthrough on how to package a CatBoost algorithm for training and production-ready hosting. We have included also a Python file for local training and serving that can run on your local computer, for faster development.
    • Bring Your Own Container LightGBM Algorithm: This example provides a detailed walkthrough on how to package a LightGBM algorithm for training and production-ready hosting. We have included also a Python file for local training and serving that can run on your local computer, for faster development.
    • Bring Your Own Container Prophet Algorithm: This example provides a detailed walkthrough on how to package a Prophet algorithm for training and production-ready hosting. We have included also a Python file for local training and serving that can run on your local computer, for faster development.
    • Bring Your Own Container HDBSCAN Algorithm: This example provides a detailed walkthrough on how to package a HDBSCAN algorithm for training. We have included also a Python file for local training that can run on your local computer, for faster development.
    • Bring Your Own Container scikit-learn Algorithm and deploy a pre-trained Model: This example provides a detailed walkthrough on how to package a scikit-learn algorithm for serving with a pre-trained model. We have included also a Python file for local serving that can run on your local computer, for faster development.
    • Delta Lake Bring Your Own Container CatBoost Algorithm: This example provides a detailed walkthrough on how to package a CatBoost algorithm for training on data fetched from Delta Lake, directly from S3, and then serve your model with the Docker image you have built. We have included also a Python file for local training and serving that can run on your local computer, for faster development.
  • Built-in scikit-learn Processing resources:

    • Built-in scikit-learn Processing Job: This example provides a detailed walkthrough on how to use the built-in scikit-learn Docker image for processing jobs. We have included also a Python file for processing jobs that can run on your local computer, for faster development.
  • Bring Your Own Container Processing resources:

    • Bring Your Own Container scikit-learn Processing Job: This example provides a detailed walk-through on how to package a scikit-learn Docker image for processing jobs. We have included also a Python file for processing jobs that can run on your local computer, for faster development.
    • Delta Sharing Bring Your Own Container Processing Job: This example provides a detailed walk-through on how to package a scikit-learn Docker image for processing job that fetch data from a table on Delta Lake using Delta Sharing, and aggregate total COVID-19 cases per country. We have included also a Python file for processing jobs that can run on your local computer, for faster development.
    • Dask Bring Your Own Container Processing Job: This example provides a detailed walk-through on how to package a Dask Docker image for processing job that fetch JSON file from a website, and outputs the filenames found. We have included also a Python file for processing jobs that can run on your local computer, for faster development.
  • Graviton resources - will work only on MacBook M1/ARM/Apple Silicon:

Note: Those examples were tested on macOS, Linux and Windows.

Prerequisites

  1. Create an AWS account if you do not already have one and login.

  2. Mac users: Install Docker Desktop for Mac

  3. Windows users: Install Docker Desktop for Windows, WSL 2 and then, a Linux distro from the Microsoft Store. You can follow the instructions here.

  4. Install the AWS CLI and Configure AWS credentials.

  5. Make sure you have Python3 installed python --version

  6. Make sure you have pip installed pip --version

Installation Instructions for PyCharm

We assume the root folder of the project is ~/Documents/dev/

  1. Open Terminal and navigate to the project root folder: cd ~/Documents/dev/

  2. Create a directory for the GitHub projects: mkdir GitHub

  3. Navigate to ~/Documents/dev/GitHub/: cd GitHub

  4. Clone the repo onto your local development machine using git clone https://github.com/aws-samples/amazon-sagemaker-local-mode

  5. Open PyCharm

  6. Open amazon-sagemaker-local-mode project from ~/Documents/dev/GitHub/amazon-sagemaker-local-mode/

  7. Now you will add a new virtual environment and install the required Python dependencies to run the demos.

  8. Navigate to PyCharm -> Preferences -> Python Interpreter, and click "Add" Add new Interpreter

  9. Add a new Virtual environment by specifying the location of the virtual environment to be created: /Users/<MY USER>/Documents/dev/sagemaker-python-sdk Add new venv

  10. Click OK

  11. On the Python Interpreter Screen, click OK. Final add venv

  12. Open terminal (inside PyCharm) and install the requirements: python -m pip install -r requirements.txt install requirements

  13. Once completed, navigate to tensorflow_script_mode_california_housing_local_training_and_serving folder, and double click on tensorflow_script_mode_california_housing_local_training_and_serving.py file open tf example

  14. Right click -> Run tensorflow_script_mode_california_housing_local_training_and_serving.py run tf example

  15. The container image download might take a few minutes to complete, but eventually you will View the output view tf output

Installation Instructions for SageMaker Notebook instances

  1. Create a new SageMaker Notebook instance. Choose ml.c5.xlarge and set volume size to 64 GB. This is required since SageMaker Dokcer images that are fetched are few GB in size
    Create SageMaker Local Notebook

  2. Open JupyterLab, and from there open terminal: File -> New -> Terminal Open Terminal

  3. List Conda environments by running conda env list List conda envs We will use python3 kernel.

  4. Activate specific Conda environment by running the following commands: source ~/anaconda3/etc/profile.d/conda.sh and then conda activate python3 Activate specific Conda environment

  5. Clone the GitHub repo by running

  • cd SageMaker
  • git clone https://github.com/aws-samples/amazon-sagemaker-local-mode
  1. Create virtual environment and then install dependencies:
  • cd amazon-sagemaker-local-mode
  • python -m venv venv
  • source venv/bin/activate
  • pip install -r requirements.txt
  1. Test the environment
  • cd scikit_learn_script_mode_local_training_and_serving
  • python scikit_learn_script_mode_local_training_and_serving.py you should see Login Succeeded message. It will take few minutes to download the Docker image so be patient. Start run python
  1. Once script is completed, you should see Predictions, Actual and RMSE Inference Success

  2. Press Control-C to exit the program.

Questions?

Please contact Eitan Sela on LinkedIn or raise an issue on this repo.

License

This library is licensed under the MIT-0 License. See the LICENSE file.

About

Amazon SageMaker Local Mode Examples

License:MIT No Attribution


Languages

Language:Python 66.2%Language:Jupyter Notebook 26.9%Language:Dockerfile 3.7%Language:Shell 2.3%Language:Java 1.0%