Giter VIP home page Giter VIP logo

knut0815 / aws-deepracer-model-optimizer-pkg Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aws-deepracer/aws-deepracer-model-optimizer-pkg

0.0 0.0 0.0 26 KB

The DeepRacer Model Optimizer ROS package creates the model_optimizer_node that is responsible for running the Intel OpenVino Model Optimizer script on the DeepRacer reinforcement learning models to obtain the optimized artifacts.

License: Apache License 2.0

Python 100.00%

aws-deepracer-model-optimizer-pkg's Introduction

DeepRacer Model Optimizer Package

Overview

The DeepRacer Model Optimizer ROS package creates the model_optimizer_node which is part of the core AWS DeepRacer application and will be launched from the deepracer_launcher. More details about the application and the components can be found here.

This node is responsible for running the Intel OpenVino Model Optimizer script for the DeepRacer reinforcement learning models to obtain the intermediate representation xml files and other optimizer artifacts required to run inference with the model.

More details about the Intel OpenVino Model Optimizer can be found here: https://docs.openvinotoolkit.org/2021.1/openvino_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html

License

The source code is released under Apache 2.0 (https://aws.amazon.com/apache-2-0/).

Installation

Prerequisites

The DeepRacer device comes with all the pre-requisite packages and libraries installed to run the model_optimizer_pkg. More details about pre installed set of packages and libraries on the DeepRacer, and installing required build systems can be found in the Getting Started section of the AWS DeepRacer Opensource page.

The model_optimizer_pkg specifically depends on the following ROS2 packages as build and execute dependencies:

  • deepracer_interfaces_pkg - This packages contains the custom message and service type definitions used across the AWS DeepRacer core application.

Downloading and Building

Open up a terminal on the DeepRacer device and run the following commands as root user.

  1. Switch to root user before you source the ROS2 installation:

     sudo su
    
  2. Source the ROS2 Foxy setup bash script:

     source /opt/ros/foxy/setup.bash 
    
  3. Create a workspace directory for the package:

     mkdir -p ~/deepracer_ws
     cd ~/deepracer_ws
    
  4. Clone the model_optimizer_pkg on the DeepRacer device:

     git clone https://github.com/aws-deepracer/aws-deepracer-model-optimizer-pkg.git
    
  5. Fetch unreleased dependencies:

     cd ~/deepracer_ws/aws-deepracer-model-optimizer-pkg
     rosws update
    
  6. Resolve the model_optimizer_pkg dependencies:

     cd ~/deepracer_ws/aws-deepracer-model-optimizer-pkg && rosdep install -i --from-path . --rosdistro foxy -y
    
  7. Build the model_optimizer_pkg and deepracer_interfaces_pkg:

     cd ~/deepracer_ws/aws-deepracer-model-optimizer-pkg && colcon build --packages-select model_optimizer_pkg deepracer_interfaces_pkg
    

Usage

The model_optimizer_node provides a very specific and core functionality to optimize the Reinforcement learning models that are trained on the AWS DeepRacer Simulator. Intel OpenVino provides APIs and scripts to create a intermediate representation that can be used for faster model inference. Although the nodes is built to work with the AWS DeepRacer application, it can be run independently for development/testing/debugging purposes.

Run the node

To launch the built model_optimizer_node as root user on the DeepRacer device open up another terminal on the DeepRacer device and run the following commands as root user:

  1. Switch to root user before you source the ROS2 installation:

     sudo su
    
  2. Source the ROS2 Foxy setup bash script:

     source /opt/ros/foxy/setup.bash 
    
  3. Set the environment variables required to run Intel OpenVino scripts:

     source /opt/intel/openvino_2021/bin/setupvars.sh
    
  4. Source the setup script for the installed packages:

     source ~/deepracer_ws/aws-deepracer-model-optimizer-pkg/install/setup.bash  
    
  5. Launch the model_optimizer_pkg using the launch script:

     ros2 launch model_optimizer_pkg model_optimizer_pkg_launch.py
    

Launch Files

The model_optimizer_pkg_launch.py is also included in this package that gives an example of how to launch the nodes independently from the core application.

from launch import LaunchDescription
from launch_ros.actions import Node

def generate_launch_description():
    return LaunchDescription([
        Node(
            package='model_optimizer_pkg',
            namespace='model_optimizer_pkg',
            executable='model_optimizer_node',
            name='model_optimizer_node'
        )
    ])

Node Details

model_optimizer_node

Services

Service Name Service Type Description
model_optimizer_server ModelOptimizeSrv Service that is called to launch the Intel OpenVino model optimizer script for the specific model with appropriate model and platform specific parameters set.

Resources

aws-deepracer-model-optimizer-pkg's People

Contributors

amazon-auto avatar pratik-nichat avatar siddalingesha-ds avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.