LGMLFeb 23, 2021

Deep Policy Dynamic Programming for Vehicle Routing Problems

arXiv:2102.11756v2162 citations
AI Analysis

This work addresses combinatorial optimization challenges in logistics and transportation, offering a hybrid method that balances optimality guarantees with practical efficiency, though it is incremental in nature.

The paper tackles vehicle routing problems by combining deep learning with dynamic programming to improve scalability and solution quality, achieving competitive performance against strong alternatives like LKH and outperforming most neural approaches on problems with 100 nodes.

Routing problems are a class of combinatorial problems with many practical applications. Recently, end-to-end deep learning methods have been proposed to learn approximate solution heuristics for such problems. In contrast, classical dynamic programming (DP) algorithms guarantee optimal solutions, but scale badly with the problem size. We propose Deep Policy Dynamic Programming (DPDP), which aims to combine the strengths of learned neural heuristics with those of DP algorithms. DPDP prioritizes and restricts the DP state space using a policy derived from a deep neural network, which is trained to predict edges from example solutions. We evaluate our framework on the travelling salesman problem (TSP), the vehicle routing problem (VRP) and TSP with time windows (TSPTW) and show that the neural policy improves the performance of (restricted) DP algorithms, making them competitive to strong alternatives such as LKH, while also outperforming most other 'neural approaches' for solving TSPs, VRPs and TSPTWs with 100 nodes.

Code Implementations2 repos
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes