ROAILGJul 10, 2017

Learning Heuristic Search via Imitation

arXiv:1707.03034v192 citations
Originality Incremental advance
AI Analysis

This addresses the challenge of real-time planning in robotics by improving heuristic efficiency, though it is incremental as it builds on existing imitation learning methods.

The paper tackles the problem of computing heuristics that explicitly minimize search effort in robotic motion planning, where limited computation requires efficient guidance. It presents SaIL, an algorithm that trains heuristic policies by imitating clairvoyant oracles, and shows it consistently outperforms state-of-the-art algorithms on a spectrum of environments.

Robotic motion planning problems are typically solved by constructing a search tree of valid maneuvers from a start to a goal configuration. Limited onboard computation and real-time planning constraints impose a limit on how large this search tree can grow. Heuristics play a crucial role in such situations by guiding the search towards potentially good directions and consequently minimizing search effort. Moreover, it must infer such directions in an efficient manner using only the information uncovered by the search up until that time. However, state of the art methods do not address the problem of computing a heuristic that explicitly minimizes search effort. In this paper, we do so by training a heuristic policy that maps the partial information from the search to decide which node of the search tree to expand. Unfortunately, naively training such policies leads to slow convergence and poor local minima. We present SaIL, an efficient algorithm that trains heuristic policies by imitating "clairvoyant oracles" - oracles that have full information about the world and demonstrate decisions that minimize search effort. We leverage the fact that such oracles can be efficiently computed using dynamic programming and derive performance guarantees for the learnt heuristic. We validate the approach on a spectrum of environments which show that SaIL consistently outperforms state of the art algorithms. Our approach paves the way forward for learning heuristics that demonstrate an anytime nature - finding feasible solutions quickly and incrementally refining it over time.

Code Implementations1 repo
Foundations

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

Your Notes