Skip to content

augcog/ROAR_PY_RL

Repository files navigation

Reniforcement Learning Platform and Sample Solutions for Robot Open Autonomous Racing(ROAR) Simulation Race

Contributors: Yunhao Cao, Tianlun Zhang, Franco Huang, Aman Saraf, Grace Zhang.

This repository is the implementation code of RL platform and a RL solution for ROAR Simulation Race based on ROAR_PY platform. The solution is inherited from ROAR-RL-Racer which runs on previous ROAR platform and you can find the technical blog here.

The current solution is trained and evaluated on the Monza Map.

straight turning

Click here for a longer video (5 mins)

Setup

Please follow the setup tutorial here to install the dependencies.

Please download the latest maps from ROAR official website

Observation Space

General

The observation space provided to the agent involves:

  1. All sensors attached to the vehicle instance:

    • Basically the RoarRLSimEnv will take in an instance of RoarPyActor and the observation space of the environment will be a superset of that RoarPyActor's get_gym_observation_spec()
    • In ROAR's internal RL code, we added the following sensors to the actor:
      • local coordinate velocimeter
      • gyroscope (angular velocity sensor)
  2. Waypoint Information Observation

    Instead of inputting an entire occupancy map into the network, we directly feed numerical information about waypoints near the vehicle as the observation provided to the agent. This is how it works:

    1. During initialization of the environment we specify an array of relative distances (that is an array of floating point values) we want to trace for waypoint information observations
    2. Then in each step we perform trace one by one, and storing them inside waypoints_information key in the final observation dict.

    A visualization of waypoint information is below, where the arrow represents the position and heading of the vehicle, the bule points represent centered waypoints, and the red points represent boundries. visualization of waypoint information

Our solution

The observation space active in our solution includes:

  • Velocity Vector (3x1)
  • IMU Vector (3x1)
  • Waypoint Information (9x4)

For more details, please refer to Observation Space documentation

Action Space

The action space of every RoarRLEnv would be identical to the return value of RoarPyActor.get_action_spec().

The action space provided to the agent involves:

  • throttle
  • steering
  • brake
  • hand_brake
  • reverse

For more details, please refer to Action Space documentation

Our solution

The action space active in our solution includes:

  • Throttle: Box(-1.0, 1.0, (1, ), float32)
  • Steering: Box(-1.0, 1.0, (1, ), float32)

Reward Function

The reward function includes:

  1. rewards for traveled distance (to smooth out Q function)
  2. penalty for collisions
  3. penalty for distance away from the centered waypoints

For detailed rewards caculation, please refer to Reward Fucntion documentation

Train

To run the training of our method, you need to:

  1. Modify wandb setup and other hyperparameters in training/train_online.py.
  2. Move into training folder and run the training script.
cd training
python train_online.py

Eval

The models are stored under training/models by default. After you have a trained model, you can go to training/eval_agent.py to modify the model path and run this script for evaluation.

python training/eval_agent

List of References

About

Environments and training codes for running reinforcement learning on the ROAR_PY control suite

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages