training/distributed-training/pytorch_smdataparallel_maskrcnn_demo.ipynb (390 lines of code) (raw):
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Distributed data parallel `MaskRCNN` training with PyTorch and SageMaker distributed\n"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"\n",
"This notebook's CI test result for us-west-2 is as follows. CI test results in other regions can be found at the end of the notebook. \n",
"\n",
"\n",
"\n",
"---"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"[Amazon SageMaker's distributed library](https://docs.aws.amazon.com/sagemaker/latest/dg/distributed-training.html) can be used to train deep learning models faster and cheaper. The [data parallel](https://docs.aws.amazon.com/sagemaker/latest/dg/data-parallel.html) feature in this library (`smdistributed.dataparallel`) is a distributed data parallel training framework for PyTorch, TensorFlow, and MXNet.\n",
"\n",
"This notebook demonstrates how to use `smdistributed.dataparallel` with PyTorch(version 1.10.2) on [Amazon SageMaker](https://aws.amazon.com/sagemaker/) to train a `MaskRCNN` model on [COCO 2017 dataset](https://cocodataset.org/#home) using [Amazon FSx for Lustre file-system](https://aws.amazon.com/fsx/lustre/) as data source.\n",
"\n",
"The outline of steps is as follows:\n",
"\n",
"1. Stage COCO 2017 dataset on [Amazon S3](https://aws.amazon.com/s3/)\n",
"2. Create Amazon FSx Lustre file-system and import data into the file-system from S3\n",
"3. Build Docker training image and push it to [Amazon ECR](https://aws.amazon.com/ecr/)\n",
"4. Configure data input channels for SageMaker\n",
"5. Configure hyper-prarameters\n",
"6. Define training metrics\n",
"7. Define training job, set distribution strategy to `SMDataParallel` and start training\n",
"\n",
"**NOTE:** With large training dataset, we recommend using [Amazon FSx](https://aws.amazon.com/fsx/) as the input file system for the SageMaker training job. FSx file input to SageMaker significantly cuts down training start up time on SageMaker because it avoids downloading the training data each time you start the training job (as done with S3 input for SageMaker training job) and provides good data read throughput.\n",
"\n",
"\n",
"**NOTE:** This example requires SageMaker Python SDK v2.X"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Amazon SageMaker Initialization\n",
"\n",
"Initialize the notebook instance. Get the AWS Region and a SageMaker execution role.\n",
"\n",
"### SageMaker role\n",
"\n",
"The following code cell defines `role` which is the IAM role ARN used to create and run SageMaker training and hosting jobs. This is the same IAM role used to create this SageMaker Notebook instance. \n",
"\n",
"`role` must have permission to create a SageMaker training job and host a model. For granular policies you can use to grant these permissions, see [Amazon SageMaker Roles](https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html). If you do not require fine-tuned permissions for this demo, you can use the IAM managed policy `AmazonSageMakerFullAccess` to complete this demo. \n",
"\n",
"As described above, since we will be using FSx, please make sure to attach `FSx Access` permission to this IAM role."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%%time\n",
"! python3 -m pip install --upgrade sagemaker\n",
"import sagemaker\n",
"from sagemaker import get_execution_role\n",
"from sagemaker.estimator import Estimator\n",
"import boto3\n",
"\n",
"sagemaker_session = sagemaker.Session()\n",
"bucket = sagemaker_session.default_bucket()\n",
"\n",
"role = (\n",
" get_execution_role()\n",
") # provide a pre-existing role ARN as an alternative to creating a new role\n",
"role_name = role.split([\"/\"][-1])\n",
"print(f\"SageMaker Execution Role:{role}\")\n",
"print(f\"The name of the Execution role: {role_name[-1]}\")\n",
"\n",
"client = boto3.client(\"sts\")\n",
"account = client.get_caller_identity()[\"Account\"]\n",
"print(f\"AWS account:{account}\")\n",
"\n",
"session = boto3.session.Session()\n",
"region = session.region_name\n",
"print(f\"AWS region:{region}\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To verify that the role above has required permissions:\n",
"\n",
"1. Go to the IAM console: https://console.aws.amazon.com/iam/home.\n",
"2. Select **Roles**.\n",
"3. Enter the role name in the search box to search for that role. \n",
"4. Select the role.\n",
"5. Use the **Permissions** tab to verify this role has required permissions attached."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Prepare SageMaker Training Images\n",
"\n",
"1. SageMaker by default use the latest [Amazon Deep Learning Container Images (DLC)](https://github.com/aws/deep-learning-containers/blob/master/available_images.md) PyTorch training image. In this step, we use it as a base image and install additional dependencies required for training `MaskRCNN` model.\n",
"2. In the GitHub repository https://github.com/HerringForks/DeepLearningExamples.git we have made a `smdistributed.dataparallel` PyTorch `MaskRCNN` training script available for your use. We will be installing the same on the training image.\n",
"\n",
"### Build and Push Docker Image to ECR\n",
"\n",
"Run the below command build the docker image and push it to ECR."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"image = \"<ADD NAME OF REPO>\" # Example: mask-rcnn-smdataparallel-sagemaker\n",
"tag = \"<ADD TAG FOR IMAGE>\" # Example: pt1.8"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"!pygmentize ./Dockerfile"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"!pygmentize ./build_and_push.sh"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"dlc_account_id = 763104351884 # By default, set the account ID used for most regions"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"! aws ecr get-login-password --region {region} | docker login --username AWS --password-stdin {dlc_account_id}.dkr.ecr.{region}.amazonaws.com\n",
"! chmod +x build_and_push.sh; bash build_and_push.sh {dlc_account_id} {region} {image} {tag}"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Preparing FSx Input for SageMaker\n",
"\n",
"1. Download and prepare your training dataset on S3.\n",
"2. Follow the steps listed here to create a FSx linked with your S3 bucket with training data - https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-fs-linked-data-repo.html. Make sure to add an endpoint to your VPC allowing S3 access.\n",
"3. Follow the steps listed here to configure your SageMaker training job to use FSx https://aws.amazon.com/blogs/machine-learning/speed-up-training-on-amazon-sagemaker-using-amazon-efs-or-amazon-fsx-for-lustre-file-systems/\n",
"\n",
"### Important Caveats\n",
"\n",
"1. You need to use the same `subnet` and `vpc` and `security group` used with FSx when launching the SageMaker notebook instance. The same configurations will be used by your SageMaker training job.\n",
"2. Make sure you set appropriate inbound/output rules in the `security group`. Specially, opening up these ports is necessary for SageMaker to access the FSx file system in the training job. https://docs.aws.amazon.com/fsx/latest/LustreGuide/limit-access-security-groups.html\n",
"3. Make sure `SageMaker IAM Role` used to launch this SageMaker training job has access to `AmazonFSx`.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## SageMaker PyTorch Estimator function options\n",
"\n",
"In the following code block, you can update the estimator function to use a different instance type, instance count, and distribution strategy. You're also passing in the training script you reviewed in the previous cell.\n",
"\n",
"**Instance types**\n",
"\n",
"`SMDataParallel` supports model training on SageMaker with the following instance types only. For best performance, it is recommended you use an instance type that supports Amazon Elastic Fabric Adapter (ml.p3dn.24xlarge and ml.p4d.24xlarge).\n",
"\n",
"1. ml.p3.16xlarge\n",
"1. ml.p3dn.24xlarge [Recommended]\n",
"1. ml.p4d.24xlarge [Recommended]\n",
"\n",
"**Instance count**\n",
"\n",
"To get the best performance and the most out of `SMDataParallel`, you should use at least 2 instances, but you can also use 1 for testing this example.\n",
"\n",
"**Distribution strategy**\n",
"\n",
"Note that to use DDP mode, you update the `distribution` strategy, and set it to use `smdistributed dataparallel`. "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"from sagemaker.pytorch import PyTorch"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"instance_type = \"ml.p4d.24xlarge\" # Other supported instance type: ml.p3.16xlarge, ml.p4d.24xlarge\n",
"instance_count = 2 # You can use 2, 4, 8 etc.\n",
"docker_image = f\"{account}.dkr.ecr.{region}.amazonaws.com/{image}:{tag}\" # YOUR_ECR_IMAGE_BUILT_WITH_ABOVE_DOCKER_FILE\n",
"region = \"<REGION>\" # Example: us-west-2\n",
"username = \"AWS\"\n",
"subnets = [\"<SUBNET_ID>\"] # Should be same as Subnet used for FSx. Example: subnet-0f9XXXX\n",
"security_group_ids = [\n",
" \"<SECURITY_GROUP_ID>\"\n",
"] # Should be same as Security group used for FSx. sg-03ZZZZZZ\n",
"job_name = \"pytorch-smdataparallel-mrcnn-fsx\" # This job name is used as prefix to the sagemaker training job. Makes it easy for your look for your training job in SageMaker Training job console.\n",
"file_system_id = \"<FSX_ID>\" # FSx file system ID with your training dataset. Example: 'fs-0bYYYYYY'\n",
"config_file = (\n",
" \"e2e_mask_rcnn_R_50_FPN_1x_16GPU_4bs.yaml\" # file that specifies the model config options\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In the hyperparameter's dictionary, add the following:\n",
"1. To use AMP (FP16), add `\"fp16\": \"\"` to set True. In the training script, there's already an option `action=\"store_true\"` that automatically sets the empty inputs to `True`.\n",
"2. To properly set the training data path for the SageMaker training environment, add `\"data-dir\": \"/opt/ml/input/data/train\"`."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"hyperparameters = {\n",
" \"config-file\": config_file,\n",
" \"skip-test\": \"\",\n",
" \"seed\": 987,\n",
" \"fp16\": \"\",\n",
" \"max_steps\": 1000,\n",
" \"data-dir\": \"/opt/ml/input/data/train\",\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"estimator = PyTorch(\n",
" entry_point=\"train_pytorch_smdataparallel_maskrcnn.py\",\n",
" role=role,\n",
" image_uri=docker_image,\n",
" source_dir=\".\",\n",
" instance_count=instance_count,\n",
" instance_type=instance_type,\n",
" framework_version=\"1.10.2\",\n",
" py_version=\"py38\",\n",
" sagemaker_session=sagemaker_session,\n",
" hyperparameters=hyperparameters,\n",
" subnets=subnets,\n",
" security_group_ids=security_group_ids,\n",
" debugger_hook_config=False,\n",
" # Training using SMDataParallel Distributed Training Framework\n",
" distribution={\"smdistributed\": {\"dataparallel\": {\"enabled\": True}}},\n",
")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Configure FSx Input for your SageMaker Training job\n",
"\n",
"from sagemaker.inputs import FileSystemInput\n",
"\n",
"file_system_directory_path = \"YOUR_MOUNT_PATH_FOR_TRAINING_DATA\" # NOTE: '/fsx/' will be the root mount path. Example: '/fsx/mask_rcnn/PyTorch'\n",
"file_system_access_mode = \"ro\"\n",
"file_system_type = \"FSxLustre\"\n",
"train_fs = FileSystemInput(\n",
" file_system_id=file_system_id,\n",
" file_system_type=file_system_type,\n",
" directory_path=file_system_directory_path,\n",
" file_system_access_mode=file_system_access_mode,\n",
")\n",
"data_channels = {\"train\": train_fs}"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Submit SageMaker training job\n",
"estimator.fit(inputs=data_channels, job_name=job_name)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"## Notebook CI Test Results\n",
"\n",
"This notebook was tested in multiple regions. The test results are as follows, except for us-west-2 which is shown at the top of the notebook.\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "conda_amazonei_pytorch_latest_p36",
"language": "python",
"name": "conda_amazonei_pytorch_latest_p36"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.13"
}
},
"nbformat": 4,
"nbformat_minor": 4
}