paper-with-me

Papers

Recursive Backwards Q-Learning in Deterministic Environments

2024-04-24 · Jan Diekhoff, Jörn Fischer

Reinforcement learning is a popular method of finding optimal solutions to complex problems. Algorithms like Q-learning excel at learning to solve stochastic problems without a model of their environment. However, they take longer to solve deterministic problems than is necessary. Q-learning can be improved to better solve deterministic problems by introducing such a model-based approach. This paper introduces the recursive backwards Q-learning (RBQL) agent, which explores and builds a model of the environment. After reaching a terminal state, it recursively propagates its value backwards through this model. This lets each state be evaluated to its optimal value without a lengthy learning process. In the example of finding the shortest path through a maze, this agent greatly outperforms a regular Q-learning agent.

📄 PDF Abstract BibTeX arXiv:2404.15822

Code (0)

등록된 구현이 없습니다.

Tasks

Q-Learning

Methods 이 논문이 사용한 방법론

Q-Learning Q-Learning is an off-policy temporal difference control algorithm: $$Q\left(S\_{t}, A\_{t}\right) \leftarrow Q\left(S\_{t}, A\_{t}\right) + \alpha\left[R_{t+1} +…

Similar Papers 제목 키워드 기반

Nominal Unification and Matching of Higher Order Expressions with Recursive Let

2021-02-16 · Manfred Schmidt-Schauß, Temur Kutsia, Jordi Levy, Mateu Villaret 외

A sound and complete algorithm for nominal unification of higher-order expressions with a recursive let is described, and shown to run in nondeterministic polynomial time. We also explore specializations like nominal let…

Optimised Maintenance of Datalog Materialisations

2017-11-10 · Pan Hu, Boris Motik, Ian Horrocks

To efficiently answer queries, datalog systems often materialise all consequences of a datalog program, so the materialisation must be updated whenever the input facts change. Several solutions to the materialisation upd…

Recursive Reinforcement Learning

2022-06-23 · Ernst Moritz Hahn, Mateo Perez, Sven Schewe, Fabio Somenzi 외

Recursion is the fundamental paradigm to finitely describe potentially infinite objects. As state-of-the-art reinforcement learning (RL) algorithms cannot directly reason about recursion, they must rely on the practition…

IngenuityQ-Learningreinforcement-learningReinforcement Learning+1

Recursively Feasible Shrinking-Horizon MPC in Dynamic Environments with Conformal Prediction Guarantees

2024-05-17 · Charis Stamouli, Lars Lindemann, George J. Pappas

In this paper, we focus on the problem of shrinking-horizon Model Predictive Control (MPC) in uncertain dynamic environments. We consider controlling a deterministic autonomous system that interacts with uncontrollable s…

Conformal PredictionModel Predictive ControlPrediction

A* shortest string decoding for non-idempotent semirings

2022-04-14 · Kyle Gorman, Cyril Allauzen

The single shortest path algorithm is undefined for weighted finite-state automata over non-idempotent semirings because such semirings do not guarantee the existence of a shortest path. However, in non-idempotent semiri…