• Building your own TensorFlow container


    https://github.com/awslabs/amazon-sagemaker-examples/blob/master/advanced_functionality/tensorflow_bring_your_own/tensorflow_bring_your_own.ipynb

    Building your own TensorFlow container

    With Amazon SageMaker, you can package your own algorithms that can then be trained and deployed in the SageMaker environment. This notebook guides you through an example using TensorFlow that shows you how to build a Docker container for SageMaker and use it for training and inference.

    By packaging an algorithm in a container, you can bring almost any code to the Amazon SageMaker environment, regardless of programming language, environment, framework, or dependencies.

    1. Building your own TensorFlow container
      1. When should I build my own algorithm container?
      2. Permissions
      3. The example
      4. The presentation
    2. Part 1: Packaging and Uploading your Algorithm for use with Amazon SageMaker
      1. An overview of Docker
      2. How Amazon SageMaker runs your Docker container
        1. Running your container during training
          1. The input
          2. The output
        2. Running your container during hosting
      3. The parts of the sample container
      4. The Dockerfile
      5. Building and registering the container
        1. Testing your algorithm on your local machine
    3. Part 2: Training and Hosting your Algorithm in Amazon SageMaker
      1. Set up the environment
      2. Create the session
      3. Upload the data for training
      4. Training On SageMaker
      5. Optional cleanup
    4. Reference

    or I'm impatient, just let me see the code!

    When should I build my own algorithm container?

    You may not need to create a container to bring your own code to Amazon SageMaker. When you are using a framework such as Apache MXNet or TensorFlow that has direct support in SageMaker, you can simply supply the Python code that implements your algorithm using the SDK entry points for that framework. This set of supported frameworks is regularly added to, so you should check the current list to determine whether your algorithm is written in one of these common machine learning environments.

    Even if there is direct SDK support for your environment or framework, you may find it more effective to build your own container. If the code that implements your algorithm is quite complex or you need special additions to the framework, building your own container may be the right choice.

    Some of the reasons to build an already supported framework container are:

    1. A specific version isn't supported.
    2. Configure and install your dependencies and environment.
    3. Use a different training/hosting solution than provided.

    This walkthrough shows that it is quite straightforward to build your own container. So you can still use SageMaker even if your use case is not covered by the deep learning containers that we've built for you.

    Permissions

    Running this notebook requires permissions in addition to the normal SageMakerFullAccess permissions. This is because it creates new repositories in Amazon ECR. The easiest way to add these permissions is simply to add the managed policy AmazonEC2ContainerRegistryFullAccess to the role that you used to start your notebook instance. There's no need to restart your notebook instance when you do this, the new permissions will be available immediately.

    The example

    In this example we show how to package a custom TensorFlow container with a Python example which works with the CIFAR-10 dataset and uses TensorFlow Serving for inference. However, different inference solutions other than TensorFlow Serving can be used by modifying the docker container.

    In this example, we use a single image to support training and hosting. This simplifies the procedure because we only need to manage one image for both tasks. Sometimes you may want separate images for training and hosting because they have different requirements. In this case, separate the parts discussed below into separate Dockerfiles and build two images. Choosing whether to use a single image or two images is a matter of what is most convenient for you to develop and manage.

    If you're only using Amazon SageMaker for training or hosting, but not both, only the functionality used needs to be built into your container.

    The presentation

    This presentation is divided into two parts: building the container and using the container.

     

    Part 1: Packaging and Uploading your Algorithm for use with Amazon SageMaker

    An overview of Docker

    If you're familiar with Docker already, you can skip ahead to the next section.

    For many data scientists, Docker containers are a new technology. But they are not difficult and can significantly simply the deployment of your software packages.

    Docker provides a simple way to package arbitrary code into an image that is totally self-contained. Once you have an image, you can use Docker to run a container based on that image. Running a container is just like running a program on the machine except that the container creates a fully self-contained environment for the program to run. Containers are isolated from each other and from the host environment, so the way your program is set up is the way it runs, no matter where you run it.

    Docker is more powerful than environment managers like conda or virtualenv because (a) it is completely language independent and (b) it comprises your whole operating environment, including startup commands, and environment variable.

    A Docker container is like a virtual machine, but it is much lighter weight. For example, a program running in a container can start in less than a second and many containers can run simultaneously on the same physical or virtual machine instance.

    Docker uses a simple file called a Dockerfile to specify how the image is assembled. An example is provided below. You can build your Docker images based on Docker images built by yourself or by others, which can simplify things quite a bit.

    Docker has become very popular in programming and devops communities due to its flexibility and its well-defined specification of how code can be run in its containers. It is the underpinning of many services built in the past few years, such as Amazon ECS.

    Amazon SageMaker uses Docker to allow users to train and deploy arbitrary algorithms.

    In Amazon SageMaker, Docker containers are invoked in a one way for training and another, slightly different, way for hosting. The following sections outline how to build containers for the SageMaker environment.

    Some helpful links:

    How Amazon SageMaker runs your Docker container

    Because you can run the same image in training or hosting, Amazon SageMaker runs your container with the argument train or serve. How your container processes this argument depends on the container.

    • In this example, we don't define an ENTRYPOINT in the Dockerfile so Docker runs the command train at training time and serve at serving time. In this example, we define these as executable Python scripts, but they could be any program that we want to start in that environment.
    • If you specify a program as an ENTRYPOINT in the Dockerfile, that program will be run at startup and its first argument will be train or serve. The program can then look at that argument and decide what to do.
    • If you are building separate containers for training and hosting (or building only for one or the other), you can define a program as an ENTRYPOINT in the Dockerfile and ignore (or verify) the first argument passed in.

    Running your container during training

    When Amazon SageMaker runs training, your train script is run, as in a regular Python program. A number of files are laid out for your use, under the /opt/ml directory:

    /opt/ml
    ├── input
    │   ├── config
    │   │   ├── hyperparameters.json
    │   │   └── resourceConfig.json
    │   └── data
    │       └── <channel_name>
    │           └── <input data>
    ├── model
    │   └── <model files>
    └── output
        └── failure
    
    
    The input
    • /opt/ml/input/config contains information to control how your program runs. hyperparameters.json is a JSON-formatted dictionary of hyperparameter names to values. These values are always strings, so you may need to convert them. resourceConfig.json is a JSON-formatted file that describes the network layout used for distributed training.
    • /opt/ml/input/data/<channel_name>/ (for File mode) contains the input data for that channel. The channels are created based on the call to CreateTrainingJob but it's generally important that channels match algorithm expectations. The files for each channel are copied from S3 to this directory, preserving the tree structure indicated by the S3 key structure.
    • /opt/ml/input/data/<channel_name>_<epoch_number> (for Pipe mode) is the pipe for a given epoch. Epochs start at zero and go up by one each time you read them. There is no limit to the number of epochs that you can run, but you must close each pipe before reading the next epoch.
    The output
    • /opt/ml/model/ is the directory where you write the model that your algorithm generates. Your model can be in any format that you want. It can be a single file or a whole directory tree. SageMaker packages any files in this directory into a compressed tar archive file. This file is made available at the S3 location returned in the DescribeTrainingJob result.
    • /opt/ml/output is a directory where the algorithm can write a file failure that describes why the job failed. The contents of this file are returned in the FailureReason field of the DescribeTrainingJob result. For jobs that succeed, there is no reason to write this file as it is ignored.

    Running your container during hosting

    Hosting has a very different model than training because hosting is reponding to inference requests that come in via HTTP. In this example, we use TensorFlow Serving, however the hosting solution can be customized. One example is the Python serving stack within the scikit learn example.

    Amazon SageMaker uses two URLs in the container:

    • /ping receives GET requests from the infrastructure. Your program returns 200 if the container is up and accepting requests.
    • /invocations is the endpoint that receives client inference POST requests. The format of the request and the response is up to the algorithm. If the client supplied ContentType and Accept headers, these are passed in as well.

    The container has the model files in the same place that they were written to during training:

    /opt/ml
    └── model
        └── <model files>
     

    The parts of the sample container

    The container directory has all the components you need to package the sample algorithm for Amazon SageMager:

    .
    ├── Dockerfile
    ├── build_and_push.sh
    └── cifar10
        ├── cifar10.py
        ├── resnet_model.py
        ├── nginx.conf
        ├── serve
        ├── train
    
    

    Let's discuss each of these in turn:

    • Dockerfile describes how to build your Docker container image. More details are provided below.
    • build_and_push.sh is a script that uses the Dockerfile to build your container images and then pushes it to ECR. We invoke the commands directly later in this notebook, but you can just copy and run the script for your own algorithms.
    • cifar10 is the directory which contains the files that are installed in the container.

    In this simple application, we install only five files in the container. You may only need that many, but if you have many supporting routines, you may wish to install more. These five files show the standard structure of our Python containers, although you are free to choose a different toolset and therefore could have a different layout. If you're writing in a different programming language, you will have a different layout depending on the frameworks and tools you choose.

    The files that we put in the container are:

    • cifar10.py is the program that implements our training algorithm.
    • resnet_model.py is the program that contains our Resnet model.
    • nginx.conf is the configuration file for the nginx front-end. Generally, you should be able to take this file as-is.
    • serve is the program started when the container is started for hosting. It simply launches nginx and loads your exported model with TensorFlow Serving.
    • train is the program that is invoked when the container is run for training. Our implementation of this script invokes cifar10.py with our our hyperparameter values retrieved from /opt/ml/input/config/hyperparameters.json. The goal for doing this is to avoid having to modify our training algorithm program.

    In summary, the two files you probably want to change for your application are train and serve.

     

    The Dockerfile

    The Dockerfile describes the image that we want to build. You can think of it as describing the complete operating system installation of the system that you want to run. A Docker container running is quite a bit lighter than a full operating system, however, because it takes advantage of Linux on the host machine for the basic operations.

    For the Python science stack, we start from an official TensorFlow docker image and run the normal tools to install TensorFlow Serving. Then we add the code that implements our specific algorithm to the container and set up the right environment for it to run under.

    Let's look at the Dockerfile for this example.

    In [1]:
    !cat container/Dockerfile
    
     
    # Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
    #
    # Licensed under the Apache License, Version 2.0 (the "License"). You
    # may not use this file except in compliance with the License. A copy of
    # the License is located at
    #
    #     http://aws.amazon.com/apache2.0/
    #
    # or in the "license" file accompanying this file. This file is
    # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
    # ANY KIND, either express or implied. See the License for the specific
    # language governing permissions and limitations under the License.
    
    # For more information on creating a Dockerfile
    # https://docs.docker.com/compose/gettingstarted/#step-2-create-a-dockerfile
    FROM tensorflow/tensorflow:1.8.0-py3
    
    RUN apt-get update && apt-get install -y --no-install-recommends nginx curl
    
    # Download TensorFlow Serving
    # https://www.tensorflow.org/serving/setup#installing_the_modelserver
    RUN echo "deb [arch=amd64] http://storage.googleapis.com/tensorflow-serving-apt stable tensorflow-model-server tensorflow-model-server-universal" | tee /etc/apt/sources.list.d/tensorflow-serving.list
    RUN curl https://storage.googleapis.com/tensorflow-serving-apt/tensorflow-serving.release.pub.gpg | apt-key add -
    RUN apt-get update && apt-get install tensorflow-model-server
    
    ENV PATH="/opt/ml/code:${PATH}"
    
    # /opt/ml and all subdirectories are utilized by SageMaker, we use the /code subdirectory to store our user code.
    COPY /cifar10 /opt/ml/code
    WORKDIR /opt/ml/code
     

    Building and registering the container

    The following shell code shows how to build the container image using docker build and push the container image to ECR using docker push. This code is also available as the shell script container/build-and-push.sh, which you can run as build-and-push.sh sagemaker-tf-cifar10-example to build the image sagemaker-tf-cifar10-example.

    This code looks for an ECR repository in the account you're using and the current default region (if you're using a SageMaker notebook instance, this is the region where the notebook instance was created). If the repository doesn't exist, the script will create it.

    In [ ]:
    %%sh
    
    # The name of our algorithm
    algorithm_name=sagemaker-tf-cifar10-example
    
    cd container
    
    chmod +x cifar10/train
    chmod +x cifar10/serve
    
    account=$(aws sts get-caller-identity --query Account --output text)
    
    # Get the region defined in the current configuration (default to us-west-2 if none defined)
    region=$(aws configure get region)
    region=${region:-us-west-2}
    
    fullname="${account}.dkr.ecr.${region}.amazonaws.com/${algorithm_name}:latest"
    
    # If the repository doesn't exist in ECR, create it.
    
    aws ecr describe-repositories --repository-names "${algorithm_name}" > /dev/null 2>&1
    
    if [ $? -ne 0 ]
    then
        aws ecr create-repository --repository-name "${algorithm_name}" > /dev/null
    fi
    
    # Get the login command from ECR and execute it directly
    $(aws ecr get-login --region ${region} --no-include-email)
    
    # Build the docker image locally with the image name and then push it to ECR
    # with the full name.
    
    docker build  -t ${algorithm_name} .
    docker tag ${algorithm_name} ${fullname}
    
    docker push ${fullname}
    
     

    Testing your algorithm on your local machine

    When you're packaging you first algorithm to use with Amazon SageMaker, you probably want to test it yourself to make sure it's working correctly. We use the SageMaker Python SDK to test both locally and on SageMaker. For more examples with the SageMaker Python SDK, see Amazon SageMaker Examples. In order to test our algorithm, we need our dataset.

     

    Download the CIFAR-10 dataset

    Our training algorithm is expecting our training data to be in the file format of TFRecords, which is a simple record-oriented binary format that many TensorFlow applications use for training data. Below is a Python script adapted from the official TensorFlow CIFAR-10 example, which downloads the CIFAR-10 dataset and converts them into TFRecords.

    In [ ]:
    ! python utils/generate_cifar10_tfrecords.py --data-dir=/tmp/cifar-10-data
    
    In [2]:
    # There should be three tfrecords. (eval, train, validation)
    ! ls /tmp/cifar-10-data
    
     
    eval.tfrecords	train.tfrecords  validation.tfrecords
    
     

    SageMaker Python SDK Local Training

    To represent our training, we use the Estimator class, which needs to be configured in five steps.

    1. IAM role - our AWS execution role
    2. train_instance_count - number of instances to use for training.
    3. train_instance_type - type of instance to use for training. For training locally, we specify local.
    4. image_name - our custom TensorFlow Docker image we created.
    5. hyperparameters - hyperparameters we want to pass.

    Let's start with setting up our IAM role. We make use of a helper function within the Python SDK. This function throw an exception if run outside of a SageMaker notebook instance, as it gets metadata from the notebook instance. If running outside, you must provide an IAM role with proper access stated above in Permissions.

    In [3]:
    from sagemaker import get_execution_role
    
    role = get_execution_role()
    
     

    Fit, Deploy, Predict

    Now that the rest of our estimator is configured, we can call fit() with the path to our local CIFAR10 dataset prefixed with file://. This invokes our TensorFlow container with 'train' and passes in our hyperparameters and other metadata as json files in /opt/ml/input/config within the container.

    After our training has succeeded, our training algorithm outputs our trained model within the /opt/ml/model directory, which is used to handle predictions.

    We can then call deploy() with an instance_count and instance_type, which is 1 and local. This invokes our Tensorflow container with 'serve', which setups our container to handle prediction requests through TensorFlow Serving. What is returned is a predictor, which is used to make inferences against our trained model.

    After our prediction, we can delete our endpoint.

    We recommend testing and training your training algorithm locally first, as it provides quicker iterations and better debuggability.

    In [4]:
    # Lets set up our SageMaker notebook instance for local mode.
    !/bin/bash ./utils/setup.sh
    
     
    SageMaker instance route table setup is ok. We are good to go.
    SageMaker instance routing for Docker is ok. We are good to go!
    
    In [ ]:
    from sagemaker.estimator import Estimator
    
    hyperparameters = {'train-steps': 100}
    
    instance_type = 'local'
    
    estimator = Estimator(role=role,
                          train_instance_count=1,
                          train_instance_type=instance_type,
                          image_name='sagemaker-tf-cifar10-example:latest',
                          hyperparameters=hyperparameters)
    
    estimator.fit('file:///tmp/cifar-10-data')
    
    predictor = estimator.deploy(1, instance_type)
    
     

    Making predictions using Python SDK

    To make predictions, we use an image that is converted using OpenCV into a json format to send as an inference request. We need to install OpenCV to deserialize the image that is used to make predictions.

    The JSON reponse will be the probabilities of the image belonging to one of the 10 classes along with the most likely class the picture belongs to. The classes can be referenced from the CIFAR-10 website. Since we didn't train the model for that long, we aren't expecting very accurate results.

    In [ ]:
    ! pip install opencv-python
    
    In [6]:
    import cv2
    import numpy
    
    from sagemaker.predictor import json_serializer, json_deserializer
    
    image = cv2.imread("data/cat.png", 1)
    
    # resize, as our model is expecting images in 32x32.
    image = cv2.resize(image, (32, 32))
    
    data = {'instances': numpy.asarray(image).astype(float).tolist()}
    
    # The request and response format is JSON for TensorFlow Serving.
    # For more information: https://www.tensorflow.org/serving/api_rest#predict_api
    predictor.accept = 'application/json'
    predictor.content_type = 'application/json'
    
    predictor.serializer = json_serializer
    predictor.deserializer = json_deserializer
    
    # For more information on the predictor class.
    # https://github.com/aws/sagemaker-python-sdk/blob/master/src/sagemaker/predictor.py
    predictor.predict(data)
    
     
    algo-1-L58J2_1  | 172.18.0.1 - - [03/Aug/2018:22:32:52 +0000] "POST /invocations HTTP/1.1" 200 229 "-" "-"
    
    Out[6]:
    {'predictions': [{'probabilities': [2.29861e-05,
        0.0104983,
        0.147974,
        0.01538,
        0.0478089,
        0.00164997,
        0.758483,
        0.0164191,
        0.00125304,
        0.000510801],
       'classes': 6}]}
    In [ ]:
    predictor.delete_endpoint()
    
     

    Part 2: Training and Hosting your Algorithm in Amazon SageMaker

    Once you have your container packaged, you can use it to train and serve models. Let's do that with the algorithm we made above.

    Set up the environment

    Here we specify the bucket to use and the role that is used for working with SageMaker.

    In [ ]:
    # S3 prefix
    prefix = 'DEMO-tensorflow-cifar10'
    
     

    Create the session

    The session remembers our connection parameters to SageMaker. We use it to perform all of our SageMaker operations.

    In [ ]:
    import sagemaker as sage
    
    sess = sage.Session()
    
     

    Upload the data for training

    We will use the tools provided by the SageMaker Python SDK to upload the data to a default bucket.

    In [ ]:
    WORK_DIRECTORY = '/tmp/cifar-10-data'
    
    data_location = sess.upload_data(WORK_DIRECTORY, key_prefix=prefix)
    
     

    Training on SageMaker

    Training a model on SageMaker with the Python SDK is done in a way that is similar to the way we trained it locally. This is done by changing our train_instance_type from local to one of our supported EC2 instance types.

    In addition, we must now specify the ECR image URL, which we just pushed above.

    Finally, our local training dataset has to be in Amazon S3 and the S3 URL to our dataset is passed into the fit() call.

    Let's first fetch our ECR image url that corresponds to the image we just built and pushed.

    In [ ]:
    import boto3
    
    client = boto3.client('sts')
    account = client.get_caller_identity()['Account']
    
    my_session = boto3.session.Session()
    region = my_session.region_name
    
    algorithm_name = 'sagemaker-tf-cifar10-example'
    
    ecr_image = '{}.dkr.ecr.{}.amazonaws.com/{}:latest'.format(account, region, algorithm_name)
    
    print(ecr_image)
    
    In [ ]:
    from sagemaker.estimator import Estimator
    
    hyperparameters = {'train-steps': 100}
    
    instance_type = 'ml.m4.xlarge'
    
    estimator = Estimator(role=role,
                          train_instance_count=1,
                          train_instance_type=instance_type,
                          image_name=ecr_image,
                          hyperparameters=hyperparameters)
    
    estimator.fit(data_location)
    
    predictor = estimator.deploy(1, instance_type)
    
    In [ ]:
    image = cv2.imread("data/cat.png", 1)
    
    # resize, as our model is expecting images in 32x32.
    image = cv2.resize(image, (32, 32))
    
    data = {'instances': numpy.asarray(image).astype(float).tolist()}
    
    predictor.accept = 'application/json'
    predictor.content_type = 'application/json'
    
    predictor.serializer = json_serializer
    predictor.deserializer = json_deserializer
    
    predictor.predict(data)
    
     

    Optional cleanup

    When you're done with the endpoint, you should clean it up.

    All of the training jobs, models and endpoints we created can be viewed through the SageMaker console of your AWS account.

    In [ ]:
    predictor.delete_endpoint()
    
  • 相关阅读:
    Python基础之内存管理与垃圾回收机制
    Git常用命令
    Git分支操作
    码云配置SSH公钥
    Git基本操作
    Git基本理论
    版本控制
    Python基础之Python语法
    成为一名JAVA高级工程师你需要学什么【转】
    一个java高级工程师的进阶之路【转】
  • 原文地址:https://www.cnblogs.com/cloudrivers/p/11931122.html
Copyright © 2020-2023  润新知