.
βββ π 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
- Install Ubuntu 22.04
- Install ROS2 Humble
- Install Gazebo
- Install
gazebo_ros_pkgs
by running:sudo apt install ros-humble-gazebo-*
- Install PyTorch 2.3.1
pip install -r requirements.txt
- 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
-
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
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
![]() ![]() |
![]() ![]() |