This Sample Application runs a simulation which trains a reinforcement learning (RL) model to drive a car around a track.
AWS RoboMaker sample applications include third-party software licensed under open-source licenses and is provided for demonstration purposes only. Incorporation or use of RoboMaker sample applications in connection with your production workloads or a commercial products or devices may affect your legal rights or obligations under the applicable open-source licenses. Source code information can be found here.
Keywords: Reinforcement learning, AWS, RoboMaker
You will need to create an AWS Account and configure the credentials to be able to communicate with AWS services. You may find AWS Configuration and Credential Files helpful.
To train the reinforcement learning model in simulation, you need an IAM role with the following policy. You can find instructions for creating a new IAM Policy here. In the JSON tab paste the following policy document:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"cloudwatch:PutMetricData",
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogStreams",
"s3:Get*",
"s3:List*",
"s3:Put*",
"s3:DeleteObject"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
cd simulation_ws
rosws update
rosdep install --from-paths src --ignore-src -r -y
colcon build
colcon bundle
The following environment variables must be set when you run your simulation:
MARKOV_PRESET_FILE
- Defines the hyperparameters of the reinforcement learning algorithm. This should be set to deepracer.py
.MODEL_S3_BUCKET
- The name of the S3 bucket in which you want to store the trained model.MODEL_S3_PREFIX
- The path where you want to store the model.WORLD_NAME
- The track to train the model on. Can be one of easy_track, medium_track, or hard_track.ROS_AWS_REGION
- The region of the S3 bucket in which you want to store the model.AWS_ACCESS_KEY_ID
- The access key for the role you created in the "AWS Permissions" sectionAWS_SECRET_ACCESS_KEY
- The secret access key for the role you created in the "AWS Permissions" sectionAWS_SESSION_TOKEN
- The session token for the role you created in the "AWS Permissions" sectionOnce the environment variables are set, you can run local training using the roslaunch command
source simulation_ws/install/setup.sh
roslaunch deepracer_simulation local_training.launch
As the reinforcement learning model improves, the reward function will increase. You can see the graph of this reward function at
All -> AWSRoboMakerSimulation -> Metrics with no dimensions -> Metric Name -> DeepRacerRewardPerEpisode
You can think of this metric as an indicator into how well your model has been trained. If the graph has plateaus, then your robot has finished learning.
You can reuse the bundle from the training phase again in the simulation phase.
The evaluation phase requires that the same environment variables be set as in the training phase. Once the environment variables are set, you can run evaluation using the roslaunch command
source simulation_ws/install/setup.sh
roslaunch deepracer_simulation evaluation.launch
The training algorithm has two phases. The first is when the reinforcement learning model is used to make the car move in the track, while the second is when the algorithm uses the information gathered in the first phase to improve the model. In the second phase, no new commands are sent to the car, meaning it will appear as if it is stopped, spinning in circles, or drifting off aimlessly.
You first need to install colcon. Python 3.5 or above is required.
apt-get update
apt-get install -y python3-pip python3-apt
pip3 install colcon-ros-bundle
After colcon is installed you need to build your robot or simulation, then you can bundle with:
# Bundling Simulation Application
cd simulation_ws
colcon bundle
This produces simulation_ws/bundle/output.tar
.
You'll need to upload this artifact to an S3 bucket. You can then use the bundle to
create a simulation application,
and create a simulation job in AWS RoboMaker.
Most of this code is licensed under the MIT-0 no-attribution license. However, the sagemaker_rl_agent package is licensed under Apache 2. See LICENSE.txt for further information.
Create issues and pull requests against this Repository on Github