Skip to content

[TRO 2025] NeuPAN: Direct Point Robot Navigation with End-to-End Model-based Learning.

License

Notifications You must be signed in to change notification settings

hanruihua/NeuPAN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NeuPAN: Direct Point Robot Navigation with End-to-End Model-based Learning

PDF PDF youtube youtube website ROS

News

Introduction

NeuPAN (Neural Proximal Alternating-minimization Network) is an end-to-end, real-time, map-free, and easy-to-deploy MPC based robot motion planner. By integrating learning-based and optimization-based techniques, NeuPAN directly maps obstacle points data to control actions in real-time by solving an end-to-end mathematical model with numerous point-level collision avoidance constraints. This eliminates middle modules design to avoid error propagation and achieves high accuracy, allowing the robot to navigate in cluttered and unknown environments efficiently and safely.

limo_lib_4x.mp4
wheel_leg_4x.mp4

More real world demonstrations are available on the project page.

Prerequisite

  • Python >= 3.10

Installation

git clone https://github.com/hanruihua/NeuPAN
cd NeuPAN
pip install -e .  

Run Examples on IR-SIM

Please Install IR-SIM first by:

pip install ir-sim

You can run examples in the example folder to see the navigation performance of diff (differential) and acker (ackermann) robot powered by NeuPAN in IR-SIM. Scenarios include

convex_obs (convex obstacles); corridor (corridor); dyna_non_obs (dynamic nonconvex obstacles); dyna_obs (dynamic obstacles); non_obs (nonconvex obstacles); pf (path following); pf_obs (path following with obstacles); polygon_robot (polygon robot), reverse (car reverse parking); dune training; and LON training.

Some demonstrations run by run_exp.py are shown below:

python run_exp.py -e non_obs -d acker python run_exp.py -e dyna_non_obs -d acker
python run_exp.py -e polygon_robot -d diff python run_exp.py -e dyna_obs -d diff -v
python run_exp.py -e corridor -d acker python run_exp.py -e corridor -d diff

Note

Since the optimization solver cvxpy is not supported on GPU, we recommend using the CPU device to run the NeuPAN algorithm. Thus, the hardware platform with more powerful CPU (e.g. Intel i7) is recommended to achieve higher frequency and better performance. However, you can still use the GPU device to train the DUNE model for acceleration.

YAML Parameters

Since there are quite a lot of parameters setting for the Neupan planner, we provide a YAML file to initialize the parameters in NeuPAN, which is listed below:

Parameter Name Type / Default Value Description
receding int / 10 MPC receding steps.
step_time float / 0.1 MPC time step (s).
ref_speed float / 4.0 MPC reference speed (m/s).
device str / "cpu" The device to run the planner. cpu or cuda
time_print bool / False Whether to print the time cost of forward step (s).
collision_threshold float / 0.1 The threshold for collision detection (m).
robot dict / dict() The parameters for the robot. See 'robot' section.
ipath dict / dict() The parameters for the naive initial path. See 'ipath' section.
pan dict / dict() The parameters for the proximal alternating minimization network. See 'pan' section.
adjust dict / dict() The parameters for the adjust weights. See 'adjust' section.
train dict / dict() The parameters for the DUNE training. See 'train' section.

robot section:

Parameter Name Type / Default Value Description
kinematics str / "diff" The kinematics of the robot. "diff" for differential drive, "acker" for Ackermann drive.
vertices list[list[float]] / None The vertices of the robot in the initial state. [[x1, y1], [x2, y2], ...]
max_speed list[float] / [inf, inf] The maximum speed of the robot.
max_acce list[float] / [inf, inf] The maximum acceleration of the robot.
wheelbase float / None The wheelbase of the robot. Generally set for the ackermann robots.
length float / None The length of the robot. If the vertices is not given, this parameter is required for rectangle robot simply
width float / None The width of the robot. If the vertices is not given, this parameter is required for rectangle robot simply
name str / kinematics + "_robot" + '_default' The name of the robot. Used for saving the DUNEmodel.

ipath section:

Parameter Name Type / Default Value Description
waypoints list[list[float]] / None The waypoints of the path. [[x1, y1], [x2, y2], ...]
loop bool / False When robots arrive at the last waypoint, whether the path will be reset to the beginning.
curve_style str / dubins The style of the curve. dubins for Dubins' path, reeds for Reeds-Shepp's path. line for straight line.
min_radius float / default_turn_radius of the robot The minimum radius of the curve.
interval float / ref_speed * step_time The interval of the points in the path.
arrive_threshold float / 0.1 The threshold to judge whether the robot arrives at the target.
close_threshold float / 0.1 The threshold to judge the closest point on the path to the robot.
ind_range int / 10 The index range of the waypoints, used for finding the next reference point on the path.
arrive_index_threshold int / 1 The threshold of the index to judge whether the robot arrives at the target.

pan section:

Parameter Name Type / Default Value Description
iter_num int / 2 The number of iterations. Large number could guarantee convergence but with high computational cost.
dune_max_num int / 100 The maximum number of obstacle points considered in the DUNE layer.
nrmp_max_num int / 10 The maximum number of obstacle points considered in the NRMP layer.
dune_checkpoint str / None The checkpoint model path of the DUNE model.
iter_threshold float / 0.1 The threshold to judge whether the iteration converges.

adjust section:

You may adjust the parameters in the adjust section to get better performance for your specific workspace.

Parameter Name Type / Default Value Description
q_s float / 1.0 The weight for the state cost. Large value encourages the robot to follow the initial path closely.
p_u float / 1.0 The weight for the speed cost. Large value encourages the robot to follow the reference speed.
eta float / 10.0 Slack gain for L1 regularization.
d_max float / 1.0 The maximum safety distance.
d_min float / 0.1 The minimum safety distance.
ro_obs float / 400 The penalty parameters for collision avoidance. Smaller value may require more iterations to converge.
bk float / 0.1 The associated proximal coefficient for convergence.
solver str / "ECOS" The optimization solver method for the NRMP layer. See cvxpylayers and cvxpy for more details.

DUNE Model Training for Your Own Robot

To train a DUNE model for your own robot with a specific convex geometry, you can refer to the example/dune_train folder. Specifically, the convex geometry is defined in the robot section by the vertices (or length and width for rectangle) when the robot is in the initial state (coordinate origin). The training parameters can be adjusted in the train section. Generally, the training time is approximately 1-2 hours for a new robot geometry.

You can use the train section in YAML file to set the training parameters for the DUNE model. The parameters are shown below:

train section:

Parameter Name Type / Default Value Description
direct_train bool / True Whether to directly train the DUNE model without asking for confirmation.
model_name str / robot_name The name of the model for file saving.
data_size int / 100000 The size of the generated training data.
data_range list[float] / [-25, -25, 25, 25] The [x_min, y_min, x_max, y_max] range of the generated training data (meter). If your robot will consider the obstacle points outside this range, you must set a larger value.
batch_size int / 256 The batch size for training.
epoch int / 5000 The number of epochs for training.
valid_freq int / 100 The frequency of the validation.
save_freq int / 500 The frequency of saving the model.
lr float / 5e-5 The learning rate for training.
lr_decay float / 0.5 The decay rate for the learning rate.
decay_freq int / 1500 The frequency of the learning rate decay.
save_loss bool / False Whether to save the loss to file.

Note

The DUNE model only needs to be trained once for a new robot geometry. This trained model can be used in various environments without retraining.

ROS Wrapper

We provide a ROS wrapper for NeuPAN. You can refer to the neupan_ros repo to see the details. The Gazebo demonstrations are shown below:

gazebo_limo_4x.mp4

Notes for Real World Deployment

  • You can easily deploy the NeuPAN algorithm on a real robot platform using neupan_ros. Currently, NeuPAN supports the kinematics of differential drive robots and Ackermann robots (see the robot section in the YAML file). For robots with other kinematics, you can modify the constraints in the NRMP layer to suit your needs.

  • The DUNE model trained in simulation can be directly applied in the real world without retraining.

  • NeuPAN solves the mathematical optimization problem in real time. Thus, its performance is influenced by three main factors: 1) the computing power of the CPU-based hardware platform; 2) the adjustment of the parameters in the adjust section; and 3) the naive initial path provided by the user.

  • We recommend using a hardware platform with a powerful CPU to enable NeuPAN to run at a control frequency higher than 10 Hz. You can run the provided examples to observe the forward time cost of NeuPAN. To reduce this cost, adjust parameters such as receding, nrmp_max_num, dune_max_num, iter_num, and iter_threshold to make NeuPAN run faster. In our experience, an Intel i7 CPU is capable of running NeuPAN at a control frequency higher than 15 Hz.

  • The adjust parameters are used to tune the weights of the state cost, speed cost, and collision avoidance cost. These parameters influence NeuPAN's behavior, making it either more aggressive or more conservative. You can adjust or train these parameters to achieve better performance for your specific workspace. Additionally, these parameters can be fine-tuned in real time for different scenarios.

  • The naive initial path can be generated from the provided waypoints or derived from a global planner like A* without accounting for obstacles. This path serves as a simple, rough initial guess for NeuPAN. We offer functionality to generate the initial path from given waypoints as either:

    • direct lines for differential drive robots,
    • Dubins' paths for forward Ackermann vehicles, or
    • Reeds-Shepp paths for forward and backward Ackermann vehicles.

Citation

If you find this code or paper is helpful, you can star this repository and cite our paper by the following BibTeX entry:

@ARTICLE{10938329,
  author={Han, Ruihua and Wang, Shuai and Wang, Shuaijun and Zhang, Zeqing and Chen, Jianjun and Lin, Shijie and Li, Chengyang and Xu, Chengzhong and Eldar, Yonina C. and Hao, Qi and Pan, Jia},
  journal={IEEE Transactions on Robotics}, 
  title={NeuPAN: Direct Point Robot Navigation With End-to-End Model-Based Learning}, 
  year={2025},
  volume={},
  number={},
  pages={1-20},
  doi={10.1109/TRO.2025.3554252}}

About

[TRO 2025] NeuPAN: Direct Point Robot Navigation with End-to-End Model-based Learning.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages