Skip to main content

Boosting deep Reinforcement Learning using pretraining with Logical Options

AuthorsZihan Ye et al.
Year2026
FieldAI / Agents
arXiv2603.06565
PDFDownload
Categoriescs.AI, cs.LG

Abstract

Deep reinforcement learning agents are often misaligned, as they over-exploit early reward signals. Recently, several symbolic approaches have addressed these challenges by encoding sparse objectives along with aligned plans. However, purely symbolic architectures are complex to scale and difficult to apply to continuous settings. Hence, we propose a hybrid approach, inspired by humans' ability to acquire new skills. We use a two-stage framework that injects symbolic structure into neural-based reinforcement learning agents without sacrificing the expressivity of deep policies. Our method, called Hybrid Hierarchical RL (H^2RL), introduces a logical option-based pretraining strategy to steer the learning policy away from short-term reward loops and toward goal-directed behavior while allowing the final policy to be refined via standard environment interaction. Empirically, we show that this approach consistently improves long-horizon decision-making and yields agents that outperform strong neural, symbolic, and neuro-symbolic baselines.


Engineering Breakdown

Plain English

This paper addresses a critical problem in deep reinforcement learning: agents become misaligned by over-exploiting immediate reward signals rather than pursuing longer-term goals. The authors propose H²RL (Hybrid Hierarchical RL), a two-stage framework that combines symbolic logical reasoning with neural deep learning to guide agents toward goal-directed behavior. Instead of using purely symbolic approaches (which don't scale well) or pure neural methods (which struggle with alignment), they use logical options as a pretraining strategy that steers the policy away from reward loops before fine-tuning with neural networks. This hybrid approach preserves the expressivity and scalability of deep policies while injecting the structural alignment guarantees that symbolic methods provide.

Core Technical Contribution

The core innovation is a two-stage reinforcement learning architecture that decouples the alignment problem from the expressivity problem. In stage one, they use logical options—high-level symbolic plans derived from sparse objectives—to pretrain the agent in a way that establishes goal-directed behavior patterns. In stage two, they fine-tune with standard deep RL on the actual reward signal, but the agent now operates within the learned behavioral structure. This is fundamentally different from prior symbolic approaches (which require hand-coded logic and don't scale to continuous domains) and from pure neural RL (which has no built-in alignment mechanism). The insight is that humans acquire skills hierarchically—first learning coarse strategies, then refining them—and this paper operationalizes that principle for neural agents.

How It Works

The H²RL framework operates in two distinct phases. First, during logical option pretraining, the system constructs symbolic representations of the task based on sparse, high-level objectives (e.g., 'reach goal without entering unsafe zones'). These logical options are abstract behavioral templates that encode the task structure—not actual neural policies, but constraint patterns that shape exploration. The agent is initialized with a policy that respects these logical constraints, essentially learning which option trajectories are valid given the symbolic rules. Second, in the neural fine-tuning phase, the pretrained agent continues learning using standard deep RL algorithms (PPO, A3C, etc.), but its policy is already biased toward the option space discovered in phase one, reducing the exploration of reward-hacking trajectories. The key technical mechanism is that logical options act as an inductive bias—they constrain the policy search space to 'reasonable' behaviors, making the neural learner's job easier and safer.

Production Impact

For production RL systems, this approach solves the critical problem of policy misalignment in safety-critical domains. Instead of deploying agents that achieve high reward but behave unexpectedly (e.g., a robot that optimizes for task completion while ignoring human safety constraints), you can now use H²RL to inject explicit goal structure during pretraining. The practical workflow would be: (1) define logical constraints or objectives via symbolic rules, (2) run the logical option pretraining phase (relatively cheap computationally since it's symbolic), (3) fine-tune the neural policy on actual reward signals. This reduces the number of unsafe exploration trajectories the agent takes during training, potentially cutting safety incidents and reducing required human oversight. Trade-offs include increased upfront effort to specify logical rules, the need for domain expertise to encode meaningful options, and potential loss of emergent strategies if the logical constraints are too restrictive—careful tuning of the pretraining phase is essential.

Limitations and When Not to Use This

The paper does not fully address how to automatically discover or generate logical options for new domains; currently this requires manual specification, limiting scalability to domains where human experts can articulate task structure. The approach assumes sparse, well-defined objectives can be meaningfully expressed symbolically—this breaks down in domains with fuzzy or learned objectives (e.g., aesthetic preference in generative tasks). The paper also doesn't provide theoretical guarantees that the logical pretraining phase actually improves convergence speed or safety; empirical validation on diverse domains is needed. Finally, the continuous domain extension mentioned in the abstract appears incomplete, and it's unclear how well this scales to high-dimensional action spaces or environments with complex dynamics where symbolic planning becomes computationally prohibitive.

Research Context

This work bridges two long-separated research traditions: symbolic AI (logic, planning, constraint satisfaction) and deep RL (neural function approximation, reward learning). It builds on prior work in hierarchical RL (options framework by Sutton et al.) and symbolic approaches to safe RL, but innovates by using logical constraints as a pretraining mechanism rather than as a runtime policy wrapper. The paper likely contributes to the broader push toward interpretable and safe RL, a direction driven by concerns about misaligned neural agents in real-world applications. This research opens up interesting follow-up questions: Can logical options be learned rather than specified? How do symbolic constraints interact with multi-agent settings? Can this approach extend to reward learning from human feedback?


:::tip Subscribe Get weekly breakdowns of papers like this in AI Letters - the newsletter for engineers building production AI systems. :::


Back to Research Lab → · Subscribe to AI Letters →

© 2026 EngineersOfAI. All rights reserved.