Click here to Skip to main content
15,885,014 members
Articles / Internet of Things
Article

Get Started with the Intel® Distribution of OpenVINO™ Toolkit and AWS Greengrass

3 Dec 2018CPOL 5.3K   1  
This section describes implementation of FaaS inference samples (based on Python 2.7) using Amazon Web Services (AWS) Greengrass and AWS Lambda software.

This article is in the Product Showcase section for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers.

Hardware-Accelerated Function-as-a-Service Using AWS Greengrass

Hardware Accelerated Function-as-a-Service (FaaS) enables cloud developers to deploy inference functionalities on Intel® IoT edge devices with accelerators such as Intel® Processor Graphics, Intel® FPGA, and Intel® Movidius™ Neural Compute Stick. These functions provide a great developer experience and seamless migration of visual analytics from cloud to edge in a secure manner using a containerized environment. Hardware-accelerated FaaS provides the best-in-class performance by accessing optimized deep learning libraries on Intel IoT edge devices with accelerators.

This section describes implementation of FaaS inference samples (based on Python* 2.7) using Amazon Web Services (AWS) Greengrass* and AWS Lambda* software. AWS Lambda functions (Lambdas) can be created, modified, or updated in the cloud and can be deployed from cloud to edge using AWS Greengrass. This document covers:

  • Description of the sample
  • Supported platforms
  • Pre-requisites for Intel IoT® edge devices
  • Configuration of an AWS Greengrass group
  • Creation and packaging of Lambda functions
  • Deployment of Lambdas
  • Various options to consume the inference output

Description

Sample File: greengrass_object_detection_sample_ssd.py
This AWS Greengrass sample detects objects in a video stream and classifies them using single-shot multi-box detection (SSD) networks such as SSD SqueezeNet, SSD MobileNet, and SSD300. This sample publishes detection outputs such as class label, class confidence, and bounding box coordinates on AWS IoT* Cloud every second.

Supported Platforms

Pre-requisites

  • Download and install the Intel® Distribution of OpenVINO™ toolkit. **The demo installs in /opt/intel/computer_vision_sdk/ by default. If you installed the toolkit in a different location, use that path for the <INSTALL_DIR>.
  • Install both Python 2.7* and Python*3.0.

Note: Python* 2.7 with opencv-python, numpy, and boto3 is required for use with AWS Greengrass. Use the instruction sudo pip2 to install the packages in locations accessible by AWS Greengrass. Python* 3.0+ is required for use with the Intel® Distribution of OpenVINO™ toolkit model optimizer.

  • Create an AWS account.
  • To run the samples, the Intel® Distribution of OpenVINO™ toolkit provides the pre-compiled libcpu_extension libraries available in the directory:
/opt/intel/computer_vision_sdk/deployment_tools/inference_engine/lib/Ubuntu_16.04/intel64/

- libcpu_extension_sse4.so – for use with Intel Atom® processors
- libcpu_extension_avx2.so – for use with Intel® Core™ and Intel® Xeon® processors

  • To run the samples on other devices, rebuild the libraries for a specific target to see a performance gain. For build instructions, refer to the Inference Engine Developer Guide.

Pre-Configuration

The previous command creates the IR (Intermediate Representation) files with .xml and .bin file extensions. If it fails, install the prerequisites for the model optimizer:

cd install_prerequisites/
./install_prerequisites.sh
  1. Download Intel® edge-optimized models available at GitHub. Any custom pre-trained classification or SSD models may be used.
    git clone https://github.com/intel/Edge-optimized-models.git
    cd Edge-optimized-models/
  2. For this demo, use the Squeesezet 5-Class detection model. Copy the .caffemodel and the .prototxt files into Intel® Distribution of OpenVINO™ toolkit model optimizer directory:
    cd SqueezeNet\ 5-Class\ detection/
    sudo cp SqueezeNetSSD-5Class.* /deployment_tools/model_optimizer/
  3. Switch to the model optimizer directory and run these commands to optimize the model (Python* version 3.5 is used in this demo):

    Note: For CPU, models must use data type FP32 for best performance. For GPU and FPGA, models must use data type FP16 for the best performance. For more information on how to use the Model Optimizer, follow the instructions at Intel® Distribution of OpenVINO™ toolkit Model Optimizer.

    cd /deployment_tools/model_optimizer/
    sudo python3 mo.py --input_model SqueezeNetSSD-5Class.caffemodel --input_proto SqueezeNetSSD-5Class.prototxt --data_type FP16
  4. Create a new folder in your home directory to store the IR files, which will be accessed by Greengrass later. Copy the .xml and .bin files to this directory:
    mkdir ~/greengrass-input-files
    cp SqueezNetSSD-5Class.xml SqueezeNetSSD-5Class.bin ~/greengrass-input-files

Add Input Video to the Folder

Add an input video to the ~/greengrass-input-files folder. Upload a custom video or select one of the sample videos. In this demo we use the SqueezeNet 5 Class Model which detects Bicycle, Bus, Car, Motorbike, and Person classes. Make sure to choose an appropriate video so that the model can make valid inferences.

Configure an AWS Greengrass group

For each Intel's edge platform, create a new AWS Greengrass group and install AWS Greengrass core software to establish the connection between cloud and edge. Follow the instructions in the AWS Greengrass Developer Guide. To create an AWS Greengrass Group, see Configure AWS Greengrass on AWS IoT. To install and configure an AWS Greengrass core on edge platform, see AWS Greengrass core on edge platform.

After configuring Greengrass on the edge device, set group and user permissions to start the daemon. Run the following commands:

sudo adduser --system ggc_user
sudo addgroup --system ggc_group

Start the daemon by typing the following:

cd /greengrass/ggc/core/
sudo ./greengrassd start

Package Lambda Functions

This section describes how to:

  • Make a project directory
  • Download AWS Greengrass SDKs
  • Package Lambda files.
  1. Create a project folder to store files for the Lambda function:
    mkdir ~/greengrass_project
  2. To download the AWS Greengrass Core SDK for Python* 2.7 follow the AWS Greengrass Developer Guide, Create and Package a Lambda Function, steps 1-3.
  3. Next extract the contents of the tar package:
    sudo tar –xvf <Download_Location>/greengrass-core-python-sdk-1.2.0.tar.gz
    cd aws_greengrass_core_sdk/examples/HelloWorld
    sudo unzip greengrassHelloWorld.zip
    cd greengrassHelloWorld
    This step creates the directory greengrasssdk. The SDK is needed to deploy a Lambda on your edge device.
  4. Copy this into the project folder:
    cp -r greengrasssdk/ ~/greengrass_project
  5. Use the object_detection_demo from Intel® Distribution of OpenVINO™ toolkit. Copy this file into the project folder:
    cp <INSTALL_DIR>/deployment_tools/inference_engine/samples/python_samples/greengrass_samples/greengrass_object_detection_sample_ssd.py ~/greengrass_project
  6. Finally, copy the greengrass_common and greengrass_ipc_python_sdk directories into the project folder:
    cd /greengrass/ggc/packages/1.6.0/runtime/python2.7/
    cp -r greengrass_common/ ~/greengrass_project
    cp -r greengrass_ipc_python_sdk/ ~/greengrass_project
  7. Change directory (cd) to ~/greengrass_project to see the following contents:
    • greengrass_common
    • greengrass_ipc_python_sdk
    • greengrasssdk
    • greengrass_object_detection_sample_ssd.py
  8. Zip these files for upload to AWS Lambda:
zip -r greengrass_sample_python_lambda.zip greengrass_common greengrass_ipc_python_sdk        greengrasssdk greengrass_object_detection_sample_ssd.py

Create Lambda Functions with AWS CLI

This demo involves creating a Lambda using AWS CLI. The CLI enables an updates to an Alias pointing to the Lambda code. This feature is very useful for users who make frequent changes to the Lambda code.

 $ aws lambda create-function \
--region region \
--function-name greengrass_object_detection \
--zip-file fileb://~/greengrass-project/greengrass_sample_python_lambda.zip \
--role role-arn \
--handler greengrass_object_detection_sample_ssd.function_handler \
--runtime python2.7 \
--profile default

Note: For this demo we set --region to us-east-1 and --role-arn to the arn of the IAM role we wish to apply. You may have to create an IAM role for Lambda first. Make sure --handler is in the format: <mainfile_name>.function_handler and your region is the same as your greengrass group.

aws lambda create-alias \
--region region \
--function-name greengrass_object_detection \
--description "Alias for Greengrass" \
--function-version 1 \
--name GG_Alias \
--profile default

If you experience issues creating the Lambda function, see AWS Greengrass Developer Guide, Tutorial: Using AWS Lambda Aliases.

  1. To setup the AWS CLI, follow AWS Greengrass Developer Guide, Set Up the AWS Command Line Interface, steps 1-3.
  2. Once the AWS CLI is configured properly, create a Lambda with AWS CLI. Type in the following in your terminal:
  3. Publish the first version:
    aws lambda publish-version \
           --region region \       
           --function-name greengrass_object_detection \
           --profile default
  4. Create an alias for this Lambda:
  5. Login to AWS and navigate to the Lambda Console. Find the greengrass_object_detection under Functions. Click on the link to see the contents and information about the Lambda.

Deployment of Lambdas

Configure the Lambda function

After creating the AWS Greengrass group and the Lambda function, configure the Lambda function for AWS Greengrass. Follow the instructions in the AWS Greengrass Developer Guide, Configure the Lambda Function for AWS Greengrass, Steps 1-8.

Use the name of the Lambda and Alias in the instructions you followed previously. Additionally, in step 8, change the memory limit to 2048MB to accommodate large input video streams.

Add the environment variables in Table 1 as key-value pairs when editing the Lambda configuration and click on Update. See Table 2 for key-value pairs used in the demo.

Table 1. Environment Variables: Key-value Pairs

Key

Value

LD_LIBRARY_PATH

<INSTALL_DIR>/opencv/share/OpenCV/3rdparty/lib:
<INSTALL_DIR>/opencv/lib:/opt/intel/opencl:
<INSTALL_DIR>/deployment_tools/inference_engine/external/cldnn/lib:
<INSTALL_DIR>/deployment_tools/inference_engine/external/mkltiny_lnx/lib:
<INSTALL_DIR>/deployment_tools/inference_engine/lib/ubuntu_16.04/intel64:
<INSTALL_DIR>/deployment_tools/model_optimizer/model_optimizer_caffe/bin:
<INSTALL_DIR>/openvx/lib

PYTHONPATH

<INSTALL_DIR>/deployment_tools/inference_engine/python_api/Ubuntu_1604/python2

PARAM_MODEL_XML

<MODEL_DIR>/<IR.xml>, where <MODEL_DIR> is user specified and contains IR.xml, the Intermediate Representation file from Intel Model Optimizer

PARAM_INPUT_SOURCE

<DATA_DIR>/input.mp4 to be specified by user. Holds both input and output data.

PARAM_DEVICE

For CPU, specify `CPU`. For GPU, specify `GPU`. For FPGA, specify `HETERO:FPGA,CPU`.

PARAM_CPU_EXTENSION_PATH

<INSTALL_DIR>/deployment_tools/inference_engine/lib/Ubuntu_16.04/intel64/<CPU_EXTENSION_LIB>, where CPU_EXTENSION_LIB is libcpu_extension_sse4.so for Intel Atom® processors and libcpu_extension_avx2.so for Intel® Core™ and Intel® Xeon® processors.

PARAM_OUTPUT_DIRECTORY

<DATA_DIR> to be specified by user. Holds both input and output data.

PARAM_NUM_TOP_RESULTS

User specified for classification sample (e.g. 1 for top-1 result, 5 for top-5 results)

Note: Table 1 lists the general paths for environment variables accessed during Greengrass deployment. Environment variable paths depend on the version of Intel® Distribution of OpenVINO™ toolkit installed. When running an Intel® Distribution of OpenVINO™ toolkit application without AWS Greengrass, the <INSTALL_DIR>/bin/setupvars.sh script is sourced first. With Greengrass deployment, however, the environment variables are sourced through the Lambda configuration.

This demo uses Intel® Distribution of OpenVINO™ toolkit R3 on the Up Squared* platform. Table 2 lists the environment variables for the Lambda configuration.

Table 2. Environment Variables: Key-value Pairs for Demo

Key

Value

LD_LIBRARY_PATH

/opt/intel/computer_vision_sdk_2018.3.343/opencv/share/OpenCV/3rdparty/lib:/opt/intel/computer_vision_sdk_2018.3.343/opencv/lib:/opt/intel/opencl:/opt/intel/computer_vision_sdk_2018.3.343/deployment_tools/inference_engine/external/cldnn/lib:/opt/intel/computer_vision_sdk_2018.3.343/deployment_tools/inference_engine/external/gna/lib:/opt/intel/computer_vision_sdk_2018.3.343/deployment_tools/inference_engine/external/mkltiny_lnx/lib:/opt/intel/computer_vision_sdk_2018.3.343/deployment_tools/inference_engine/lib/ubuntu_16.04/intel64:/opt/intel/computer_vision_sdk_2018.3.343/deployment_tools/model_optimizer/model_optimizer_caffe/bin:/opt/intel/computer_vision_sdk_2018.3.343/openvx/lib:

PYTHONPATH

/opt/intel/computer_vision_sdk_2018.3.343/python/python2.7:/opt/intel/computer_vision_sdk_2018.3.343/python/python2.7/ubuntu16:/opt/intel/computer_vision_sdk_2018.3.343/deployment_tools/model_optimizer:

PARAM_MODEL_XML

/home/upsquared/greengrass-input-files/SqueezeNetSSD-5Class.xml

PARAM_INPUT_SOURCE

/home/upsquared/greengrass-input-files/sample-videos/inputvideo.mp4

PARAM_DEVICE

GPU

PARAM_CPU_EXTENSION_PATH

/opt/intel/computer_vision_sdk_2018.2.319/deployment_tools/inference_engine/lib/ubuntu_16.04/intel64/libcpu_extension_sse4.so

PARAM_OUTPUT_DIRECTORY

/home/upsquared/greengrass-output

PARAM_NUM_TOP_RESULTS

3

Table 3 lists the LD_LIBRARY_PATH and additional environment variables for Intel® Arria® 10 GX FPGA Development Kit.

Table 3. Environment Variables: Additional Key-value pairs for Intel® Arria® 10 GX FPGA Developer Kit

Key

Value

LD_LIBRARY_PATH

/opt/altera/aocl-pro-rte/aclrte-linux64/board/a10_ref/linux64/lib:

/opt/altera/aocl-pro-rte/aclrte-linux64/host/linux64/lib:

<INSTALL_DIR>/opencv/share/OpenCV/3rdparty/lib:

<INSTALL_DIR>/opencv/lib:/opt/intel/opencl:

<INSTALL_DIR>/deployment_tools/inference_engine/external/cldnn/lib:

<INSTALL_DIR>/deployment_tools/inference_engine/external/mkltiny_lnx/lib:

<INSTALL_DIR>/deployment_tools/inference_engine/lib/ubuntu_16.04/intel64:

<INSTALL_DIR>/deployment_tools/model_optimizer/model_optimizer_caffe/bin:

<INSTALL_DIR>/openvx/lib

DLA_AOCX

<INSTALL_DIR>/a10_devkit_bitstreams/0-8-1_a10dk_fp16_8x48_arch06.aocx

CL_CONTEXT_COMPILER_MODE_INTELFPGA

3

Figure 1. Environment Variable Example

Add Subscription

To subscribe or publish messages from AWS Greengrass Lambda function, follow the AWS Greengrass Developer Guide, Configure the Lamb Function for AWS Greengrass, Steps 10-14.

The Optional topic filter field should be mentioned inside the Lambda function. For example, openvino/ssd is the topic used in greengrass_object_detection_sample_ssd.py.

Configure Local Resources

To grant Greengrass access to the hardware resources, as well as the environment variable paths, follow the AWS Greengrass Developer Guide,

Table 4. Resource Access

Name Resource Type Local Path Access
InputDir Volume home/<username>/greengrass-input-files Read-Only
Webcam

 

Device

 

/dev/video0

 

Read-Only

 

OutputDir

 

Volume

 

home/<username>/greengrass-output

 

Read and Write

 

OpenVINOPath

 

Volume

 

<INSTALL_DIR> (OpenVINO Install location)

 

Read-Only

 

Note: If using a webcam rather than a pre-recorded video, modify the code in greengrass_object_detection_sample_ssd.py.
Change the PARAM_INPUT_SOURCE line:
From : PARAM_INPUT_SOURCE = os.environ.get("PARAM_INPUT_SOURCE")
TO: PARAM_INPUT_SOURCE = 0

The 0 value represents the suffix of the video device in the /dev folder.

Table 5. Resource Access for GPU

Name Resource Type Local Path Access
GPU Device /dev/dri/renderD128 Read and Write

Table 6. Resource Access for FPGA

Name Resource Type Local Path Access
FPGA Device /dev/acla10_ref0 Read and Write
FPGA_DIR1 Volume /opt/Intel/OpenCL/Boards Read and Write
FPGA_DIR2 Volume /etc/OpenCL/vendors Read and Write
Figure 2. Resource Access Example

Add Role

Lastly, add a role to the Greengrass group.

1. Go to the Greengrass Console > Groups. Select your group name.
2. Choose Settings and Add Role for the Group Role Section.

Note: You may have to create a Greengrass IAM role prior to following the Add Role instructions. Adding a role is required to upload images to S3 and access other AWS resources.

Deploy

To deploy the Lambda function to AWS Greengrass core device, select Deployments on group page and follow the instructions in Deploy Cloud Configurations to AWS Greengrass Core Device.

Upon first deployment, an error may occur.

Figure 3. First Deployment Error

  1. To fix the error, give ggc_user:ggc_group permission to access the Intel® Distribution of OpenVINO™ toolkit Install location. On the command line, type on the core device:
    chown ggc_user:ggc_group /opt/intel/computer_vision_sdk
    
  2. Repeat the same chown process on other directories if the error occurs again. Additionally, make sure to remove the Webcam resource if it is not plugged in, or an error will occur when deploying the Lambda.

Update/Change Lambda Code

This section describes how to deploy new version of the Lambda to AWS Greengrass after changing the code inside the Lambda Console. For example, modifying greengrass_object_detection_sample_ssd.py requires deploying a new version.

  1. Inside of Lambda Console, choose Actions > Publish New Version.
  2. From the Terminal, using AWS CLI, update the alias to point to the new version.
    aws lambda update-alias \
    --region region \
    --function-name greengrass_object_detection \
    --function-version 2 \
    --name GG_Alias \
    --profile default
    

    For --function-version, specify the function version that you published to in the Lambda Console.

Output Consumption

There are four options available for output consumption:

  • AWS IoT Cloud Output
  • AWS Kinesis Streaming*
  • Cloud Storage using AWS S3 Bucket*
  • Local Storage

These options are used to report, stream, upload and store inference output at an interval defined by the variable reporting_interval in the AWS Greengrass samples.

Descriptions

AWS IoT Cloud Output

The AWS Greengrass samples enable AWS IoT Cloud Output by default with the variable enable_iot_cloud_output. The option verifies the Lambda running the edge device. It also enables publishing messages to AWS IoT Cloud using subscription topics specified in the Lambda. For example, the option publishes messages for classification using the subscription topic openvino/classification. The option publishes the top class label to AWS IoT cloud. It uses the subscription topic openvino/ssd for object detection samples. For SSD object detection, it publishes bounding box co-ordinates of objects, class label, and class confidence.

To view the output on AWS IoT cloud, follow the AWS Greengrass Developer Guide, Verify the Lambda Function is Running on the Device.

AWS Kinesis Streaming

The AWS Kinesis Streaming option enables inference output to be streamed from the edge device to cloud using AWS Kinesis streams when enable_kinesis_output is set to True. The edge devices act as data producers and continually push processed data to the cloud. Users set up and specify AWS Kinesis stream name, AWS Kinesis shard, and AWS region in the AWS Greengrass samples.

Cloud Storage using AWS S3* Bucket

The Cloud Storage Using AWS S3 Bucket option enables uploading and storing processed frames (JPEG format) in an AWS S3* bucket when the enable_s3_jpeg_output variable is set to True. The users need to set up and specify the AWS S3 bucket name in the AWS Greengrass samples to store the JPEG images. The images are named using the timestamp and uploaded to AWS S3.

Local Storage

The Local Storage option enables storing processed frames (JPEG format) on the edge device when the enable_s3_jpeg_output variable is set to True. The images are named using the timestamp and stored in a directory specified by PARAM_OUTPUT_DIRECTORY.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
You may know us for our processors. But we do so much more. Intel invents at the boundaries of technology to make amazing experiences possible for business and society, and for every person on Earth.

Harnessing the capability of the cloud, the ubiquity of the Internet of Things, the latest advances in memory and programmable solutions, and the promise of always-on 5G connectivity, Intel is disrupting industries and solving global challenges. Leading on policy, diversity, inclusion, education and sustainability, we create value for our stockholders, customers and society.
This is a Organisation

42 members

Comments and Discussions

 
-- There are no messages in this forum --