Skip to content

anurye/Mobile-Robot-Navigation-Using-Deep-Reinforcement-Learning-and-ROS

Repository files navigation

DRL-for-Mobile-Robot-Navigation-Using-ROS2

Table of Contents

  1. Project Structure
  2. Requirements
  3. Build
  4. Training
  5. Testing
  6. Additional Demos

Project Structure

.
β”œβ”€β”€ πŸ“‚ docs/: contains demo videos
β”‚   β”œβ”€β”€ πŸ“„ dynamic_environment.mp4
β”‚   β”œβ”€β”€ πŸ“„ slam.mp4
β”‚   └── πŸ“„ simulation.mp4
β”œβ”€β”€ πŸ“‚ drl_agent/: main deep reinforcement learning agent directory
β”‚   β”œβ”€β”€ πŸ“‚ config/: contains configuration files
β”‚   β”œβ”€β”€ πŸ“‚ launch/: contains launch files
β”‚   β”œβ”€β”€ πŸ“‚ scripts/: contains code for environment, policies, and utilities
β”‚   └── πŸ“‚ temp/: stores models, logs, and results
β”œβ”€β”€ πŸ“‚ drl_agent_description/: contains robot description files, models, and URDFs
β”‚   β”œβ”€β”€ πŸ“‚ launch/: launch files for agent description
β”‚   β”œβ”€β”€ πŸ“‚ meshes/: 3D models of the robot
β”‚   β”œβ”€β”€ πŸ“‚ models/: contains specific model files for kinect sensors
β”‚   └── πŸ“‚ urdf/: URDF files for camera, laser, and robot description
β”œβ”€β”€ πŸ“‚ drl_agent_gazebo/: contains Gazebo simulation configuration and world files
β”‚   β”œβ”€β”€ πŸ“‚ config/: simulation and SLAM configuration files
β”‚   β”œβ”€β”€ πŸ“‚ launch/: Gazebo launch files for various setups
β”‚   β”œβ”€β”€ πŸ“‚ models/: Gazebo models used in the simulation
β”‚   └── πŸ“‚ worlds/: simulation worlds for training and testing environments
β”œβ”€β”€ πŸ“‚ drl_agent_interfaces/: custom action, message, and service definitions
β”‚   β”œβ”€β”€ πŸ“‚ action/: defines DRL session actions
β”‚   β”œβ”€β”€ πŸ“‚ msg/: empty for now
β”‚   └── πŸ“‚ srv/: service definitions for environment and robot interactions
β”œβ”€β”€ πŸ“‚ velodyne_simulator/: Velodyne LiDAR simulation setup

Requirements

Other requirements

pip install -r requirements.txt

Build

  • Clone this repository:
    mkdir -p ~/drl_agent_ws/src
    cd ~/drl_agent_ws/src
    git clone --recurse-submodules git@github.com:anurye/DRL-for-Mobile-Robot-Navigation-Using-ROS2.git .
  • Install dependencies:
    cd ~/drl_agent_ws
    rosdep install --from-path src -yi --rosdistro humble
  • Build the workspace:
    cd ~/drl_agent_ws
    colcon build

Training

  • Export the environment variable DRL_AGENT_PACKAGE_PATH:

    echo 'export DRL_AGENT_PACKAGE_PATH=~/drl_agent_ws/src/drl_agent' >> ~/.bashrc
    source ~/.bashrc
  • Launch the simulation:

    Terminal 1:

    cd ~/drl_agent_ws
    source install/setup.bash
    ros2 launch drl_agent_gazebo simulation.launch.py

    Terminal 2:

    cd ~/drl_agent_ws
    source install/setup.bash
    ros2 run drl_agent_gazebo environment.py 

    Terminal 3:

    cd ~/drl_agent_ws
    source install/setup.bash
    ros2 run drl_agent train_td7_agent.py

Testing

If you have closed the terminals, restart the simulation in Terminal 1 and Terminal 2 as described above.

Terminal 3:

cd ~/drl_agent_ws
source install/setup.bash
ros2 run drl_agent test_td7_agent.py

Additional Demos

SLAM Dynamic

Releases

No releases published

Packages

No packages published