paper-with-me

홈 › Papers

Adaptive Sampling using POMDPs with Domain-Specific Considerations

2021-09-23 · Gautam Salhotra, Christopher E. Denniston, David A. Caron, Gaurav S. Sukhatme

We investigate improving Monte Carlo Tree Search based solvers for Partially Observable Markov Decision Processes (POMDPs), when applied to adaptive sampling problems. We propose improvements in rollout allocation, the action exploration algorithm, and plan commitment. The first allocates a different number of rollouts depending on how many actions the agent has taken in an episode. We find that rollouts are more valuable after some initial information is gained about the environment. Thus, a linear increase in the number of rollouts, i.e. allocating a fixed number at each step, is not appropriate for adaptive sampling tasks. The second alters which actions the agent chooses to explore when building the planning tree. We find that by using knowledge of the number of rollouts allocated, the agent can more effectively choose actions to explore. The third improvement is in determining how many actions the agent should take from one plan. Typically, an agent will plan to take the first action from the planning tree and then call the planner again from the new state. Using statistical techniques, we show that it is possible to greatly reduce the number of rollouts by increasing the number of actions taken from a single planning tree without affecting the agent's final reward. Finally, we demonstrate experimentally, on simulated and real aquatic data from an underwater robot, that these improvements can be combined, leading to better adaptive sampling. The code for this work is available at https://github.com/uscresl/AdaptiveSamplingPOMCP

📄 PDF Abstract BibTeX arXiv:2109.11595

Code (1)

uscresl/adaptivesamplingpomcp 공식 구현 pytorch

Similar Papers 제목 키워드 기반

Stochastic Finite State Control of POMDPs with LTL Specifications

2020-01-21 · Mohamadreza Ahmadi, Rangoli Sharan, Joel W. Burdick

Partially observable Markov decision processes (POMDPs) provide a modeling framework for autonomous decision making under uncertainty and imperfect sensing, e.g. robot manipulation and self-driving cars. However, optimal…

Decision MakingDecision Making Under UncertaintyRobot ManipulationRobot Navigation+1

Learning in POMDPs with Monte Carlo Tree Search

2018-06-14 · ICML 2017 8 · Sammie Katt, Frans A. Oliehoek, Christopher Amato

The POMDP is a powerful framework for reasoning under outcome and information uncertainty, but constructing an accurate POMDP model is difficult. Bayes-Adaptive Partially Observable Markov Decision Processes (BA-POMDPs) …

Individual Planning in Infinite-Horizon Multiagent Settings: Inference, Structure and Scalability

2015-12-01 · NeurIPS 2015 12 · Xia Qu, Prashant Doshi

This paper provides the first formalization of self-interested planning in multiagent settings using expectation-maximization (EM). Our formalization in the context of infinite-horizon and finitely-nest…

Posterior Sampling-based Online Learning for Episodic POMDPs

2023-10-16 · Dengwang Tang, Dongze Ye, Rahul Jain, Ashutosh Nayyar 외

Learning in POMDPs is known to be significantly harder than in MDPs. In this paper, we consider the online learning problem for episodic POMDPs with unknown transition and observation models. We propose a Posterior Sampl…

Monte-Carlo Planning in Large POMDPs

2010-12-01 · NeurIPS 2010 12 · David Silver, Joel Veness

This paper introduces a Monte-Carlo algorithm for online planning in large POMDPs. The algorithm combines a Monte-Carlo update of the agent's belief state with a Monte-Carlo tree search from the current belief state. The…