Papers
Topics
Authors
Recent
Search
2000 character limit reached

Incentivizing Neuro-symbolic Language-based Reasoning in VLMs via Reinforcement Learning

Published 23 Apr 2026 in cs.CL | (2604.22062v1)

Abstract: There are 7,407 languages in the world. But, what about the languages that are not there in the world? Are humans so narrow minded that we don't care about the languages aliens communicate in? Aliens are humans too! In the 2016 movie Arrival, Amy Adams plays a linguist, Dr. Louise Banks who, by learning to think in an alien language (Heptapod) formed of non-sequential sentences, gains the ability to transcend time and look into the future. In this work, I aim to explore the representation and reasoning of vision-language concepts in a neuro-symbolic language, and study improvement in analytical reasoning abilities and efficiency of "thinking systems". With Qwen3-VL-2B-Instruct as base model and 4 $\times$ Nvidia H200 GPU nodes, I achieve an accuracy improvement of 3.33\% on a vision-language evaluation dataset consisting of math, science, and general knowledge questions, while reducing the reasoning tokens by 75\% over SymPy. I've documented the compute challenges faced, scaling possibilities, and the future work to improve thinking in a neuro-symbolic language in vision-LLMs. The training and inference setup can be found here: https://github.com/i-like-bfs-and-dfs/wolfram-reasoning.

Authors (1)

Summary

  • The paper introduces a novel reinforcement-learning framework that encourages VLMs to adopt a compact neuro-symbolic language for math reasoning.
  • It demonstrates a 75% reduction in reasoning token length and a modest 3.33% accuracy improvement over language-only baselines.
  • The modular pipeline with symbolic encoding, deductive execution, and LM guidance promises efficient and interpretable problem solving under hardware constraints.

Incentivizing Neuro-symbolic Language-based Reasoning in VLMs via Reinforcement Learning

Introduction and Motivation

This work addresses the insufficient generalizability and efficiency of current Vision-LLMs (VLMs) in symbolic mathematical reasoning. Existing approaches, such as AlphaGeometry and AlphaEvolve, have demonstrated SoTA performance in specific mathematical domains and hardware design, respectively. However, these systems exhibit key limitations: domain specificity constrains AlphaGeometryโ€™s applicability beyond geometry, while AlphaEvolveโ€™s reliance on resource-intensive evolutionary methods hampers broad deployment.

The paper proposes a novel neuro-symbolic training methodology that incentivizes vision-language systems to conduct mathematical reasoning in a structured, neuro-symbolic languageโ€”rather than conventional spoken languagesโ€”via reinforcement learning (RL). This approach is motivated by the inefficiency of lengthy chain-of-thought (CoT) rationales in natural language, especially for highly structured mathematical reasoning which could benefit from a more compressed, symbolic internal representation. Figure 1

Figure 1: Overview of the proposed training methodology, highlighting RL-based guidance to neuro-symbolic tool use and representation.

Methodology

The core of the approach is a neuro-symbolic language and engine capable of representing thousands of mathematical abstractions. The Qwen3-VL-2B-Instruct model serves as the base, with LoRA-based PEFT to maintain tractable parameter counts (6.4M trainable parameters, 0.3% of total), critical given the experimental hardwareโ€™s 4ร—Nvidia H200 GPU constraint.

The methodology integrates both in-context learning and RL (specifically GRPO-based RL) to explicitly motivate the following:

  1. Adoption of Neuro-symbolic Representation: The vision-LLM is instructed to translate visual and linguistic input into a concise neuro-symbolic โ€˜codeโ€™, which can be executed by a domain-specific engine.
  2. Tool Use via Neuro-symbolic Engine: The RL reward model incentivizes direct calls to the neuro-symbolic engine for computationโ€”eschewing the verbose symbolic manipulation typically found in natural language output.
  3. Efficient Reasoning: The model is trained to favor task accomplishment via minimal, semantically dense code rather than protracted natural language CoTs, directly addressing the inefficiency previously documented in open LLMs for mathematical domains.

The methodโ€™s architecture divides the reasoning process into three functional components:

  • Symbolic Encoding: Inputs are mapped into neuro-symbolic instructions.
  • Deductive Execution: A neuro-symbolic engine interprets and computes from this code.
  • LM Guidance: The model orchestrates code construction and interprets engine outputs. Figure 2

    Figure 2: Key components for thinking in a neuro-symbolic languageโ€”representation, deduction, and guidance by the vision-LLM.

Experimental Setup and Results

Datasets and Evaluation

Experiments use the ViRL39K dataset, encompassing diverse math, science, and general knowledge VQA prompts across English and Chinese. Benchmarks include MathVerse, Math-VISION, and MathVista to assess both mathematical reasoning and generalization to unseen concepts and noisy inputs.

The primary baselineโ€”Qwen3-VL-2B-Instructโ€”achieves an overall accuracy of 18.06% on visual mathematical reasoning tasks, with observations of extremely verbose outputs in natural language.

Neuro-symbolic Reasoning Performance

  • Few-shot In-context Results: Applying an in-context neuro-symbolic instruction prompt, accuracy is 6.98%, but with substantial code error rates and incomplete representation of neuro-symbolic constructs, indicating the modelโ€™s limited pre-training for code generation in this specialized format.
  • GRPO-based RL Results: RL marginally improves over in-context learning (8.33% accuracy) and surpasses Python/SymPy-based tool-use (6%). However, sample efficiency is constrained (G=10 groups over 10 epochs) due to hardware limitations, hindering convergence. Nevertheless, RL-trained models demonstrate the capacity to produce correct, syntax-valid neuro-symbolic code more often than in-context learning alone.

A central empirical finding is a 75% reduction in reasoning token length for the neuro-symbolic approach compared to equivalent solutions expressible in Python/SymPy. This directly supports the claim that neuro-symbolic code embodies much more compact, human-like โ€œthinkingโ€ for mathematical VQA than open-ended language output.

Analysis of Claims and Implications

Key numerical results and strong claims:

  • 3.33% absolute accuracy improvement on visual math benchmarks over language-only baselines for the same model scale.
  • 75% reduction in reasoning tokens when using neuro-symbolic language versus open-domain languages or Python.
  • Neuro-symbolic reasoning is shown to be more resource- and context-efficient, especially under tight compute budgets.

While the overall accuracy remains well below large-scale models (e.g., Qwen3-VL-235B), the demonstrated efficiency strongly suggests the merit of explicit symbolic representations for scalable mathematical reasoning. Furthermore, pipeline modularity (LM โ†’ neuro-symbolic code โ†’ engine) provides clearer interpretability and amenability to error analysis.

Practical and Theoretical Implications

Practically, this approach paves the way for VLMs to achieve mathematically rigorous, interpretable problem solving in domains with high combinatorial and symbolic complexity, without the need to massively scale up model or context size. The explicit neuro-symbolic intermediate encourages both human-alignment and easier integration of formal verification.

Theoretically, the success of RL to โ€œsteerโ€ models toward producing symbolic code, even under strong resource constraints, suggests useful synergies between RLHF-style tuning and structured tool-use. The efficiency gain in token count directly translates into improved sample complexity and potentially allows a given hardware budget to consider deeper or more diverse problem spaces.

Contradictory or limiting findings:

  • The boost from GRPO-based RL, while clear, is modestโ€”further evidence that reward shaping and symbolic prompt engineering are necessary for substantial performance gains under restricted data regimes.
  • Sample efficiency remains bottlenecked by GPU availability, indicating that future work should integrate memory and throughput optimizations such as FlashAttention and vLLMs, as noted by the author.

Future Directions

Improvements in attention efficiency and multimodal grounding (e.g., via multimodal low-rank projections) are highlighted as crucial next steps. Additionally, scaling RL with more sophisticated reward functions and augmenting the neuro-symbolic engine with interactive proof or simulation components could further close the gap between compact symbolic reasoning and high SoTA accuracy. The modularity of the approach suggests promising applications to formal verification, automated discovery, and interpretable AI systems in scientific domains.

Conclusion

This work introduces and empirically validates a reinforcement-learning-based approach to incentivize neuro-symbolic reasoning in compact vision-LLMs. Quantitative results underscore the benefits of neuro-symbolic code representation: greatly reduced reasoning token length and improved accuracy relative to natural language reasoning within the same parameter and hardware regime. While current results are bounded by hardware and data limitations, the modular, interpretable pipeline and demonstrated sample efficiency point toward scalable, resource-conscious mathematical reasoning across VLM applications. Future work integrating more efficient training and richer neuro-symbolic representations promises to further advance the capabilities and interpretability of multimodal reasoning systems.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 1 like about this paper.