Enhancing Small Language Models Reasoning through Knowledge Graph Grounding


Abstract

Although large language models (LLMs) have set benchmarks for zero-shot reasoning, their deployment remains cost-prohibitive and environmentally taxing. Small Language Models (SLMs) offer a sustainable alternative, but prone to errors, on tasks requiring complex, multi-hop logical grounding. We investigate a neuro-symbolic agentic framework to enhance the reasoning capabilities of SLMs, specifically Gemma 3 (1B, 4B) and Llama 3.2 (3B), using the CLUTRR kinship benchmark. Our approach transforms the SLM into a minimalist agent utilizing two specialized tool calls: extract_facts for symbolic triplet extraction and get_hint for expert reasoning via a Relational Graph Convolutional Network (RGCN). We evaluate these models across two configurations, both in an Oracle scenario with ground-truth triplets and a Realistic scenario relying on self-extracted knowledge. Our results reveal that while RGCN-derived hints provide a 1.5 - 2x performance gain over story-only baselines, the system is constrained by the extraction bottleneck and sequential deductive fragility, where early extraction errors compound over multi-hop chains. Furthermore, we identify a “distraction effect" in specific architectures where noisy, self-generated facts degrade performance despite the presence of expert hints. This work characterizes the challenges of symbolic grounding in low-resource agentic systems and provides a roadmap for iterative verification in neuro-symbolic agentic pipelines.

[orcid=0000-0002-3434-2717, email=dkelesis@iit.demokritos.gr, ]

[orcid=0000-0002-1910-2758, ]

[]

Relational Reasoning , Small Language Models (SLMs) , Graph Neural Networks (GNNs)

1 Introduction↩︎

Large Language Models (LLMs) have emerged as a standard for zero-shot reasoning across diverse domains [1][3]. However, the deployment of frontier models (i.e., models with hundreds of billions of parameters) remains cost-prohibitive and has negative environmental impact [4], [5]. Additionally, such models often require massive computational clusters that are inaccessible to the average user. Consequently, there is a growing shift toward Small Language Models (SLMs), which offer a more sustainable and budget-friendly alternative for low-resource environments [6][9].

Despite their efficiency, SLMs often struggle with complex, multi-hop relational reasoning where logical consistency is very important [10][12]. A notable example is the CLUTRR benchmark [13], which requires models to induce kinship relations from narrative text through varying lengths of reasoning chains. In such scenarios, the limited parameter count of SLMs often leads to “hallucinated" relations or a failure to maintain the symbolic state of the story [14], [15]. The vulnerability of SLMs in these tasks stems from sequential deductive fragility: as the reasoning depth increases, minor errors in early fact extraction act as false premises, compounding through the chain and leading to catastrophic logical failures [12], [16].

To address these limitations, we propose a neuro-symbolic framework that transforms the SLM from a standalone reasoner into a minimalist agent. Our approach augments the SLM with two specialized tool calls: (i) a fact extractor that generates relational triplets from the narrative (i.e., story), and (ii) an expert Relational Graph Convolutional Network (RGCN) [17] that reasons over the resulting knowledge graph to provide a “hint" (i.e., a predicted relation and a confidence score) given a pair of query entities. By decoupling the text understanding from the relational logic, we provide a mechanism for causal grounding and structured explanation.

Our main contributions are as follows:

  • We introduce a framework for enhancing SLM performance in zero-shot relational learning. In realistic settings where the SLM extracts its own facts, our method yields a 1.5 - 2x performance gain over story-only baselines.

  • We provide a comparative study across different open-source model architectures (Gemma 3 1B/4B [18], Llama 3.2 3B [19]), analyzing how model size influences the quality of symbolic extraction.

  • We conduct an extensive practical analysis, comparing our realistic pipeline against an Oracle configuration to isolate the failure modes inherent in noisy, self-generated knowledge graphs.

2 Related Work↩︎

2.1 Relational Reasoning and CLUTRR↩︎

Relational reasoning remains a cornerstone of artificial intelligence, requiring models to induce logical rules from discrete facts. The CLUTRR benchmark [13] was specifically designed to evaluate the systematic generalization of Natural Language Understanding (NLU) systems by requiring multi-hop kinship inference from story text. While graph-based models [17], [20] operating on symbolic inputs often achieve high accuracy, standard language models exhibit a sharp performance decline as reasoning depth (i.e., hop count betweeen the query entities) increases, often due to an inability to maintain consistent symbolic state.

2.2 Reasoning in Small Language Models (SLMs)↩︎

Recent advancements have focused on narrowing the “intelligence gap" between frontier models and SLMs through specialized training and high-quality synthetic data. Works such as [21], [22] demonstrate that models under 4 billion parameters can perform competent single-hop tasks but struggle with the”lost-in-the-middle" phenomenon [23] and logical chaining in zero-shot settings. Efforts to enhance SLMs often involve parameter-efficient fine-tuning (LoRA) or knowledge distillation from larger “teacher" models to improve their logical grounding.
Recent research has identified a”quantization trap" in small models, where the accumulation of noise across logical chains violates standard linear scaling laws, making multi-hop tasks uniquely difficult for compressed architectures [22], [24]. While multi-agent architectures have shown promise in maintaining stability across 4+ hops [25], these solutions often re-introduce the computational costs we aim to avoid. Our work specifically targets the extraction phase, investigating whether specialized graph-based models can mitigate this “sequential fragility" in a single-agent, tool-augmented setup.

2.3 Neuro-Symbolic and Agentic Integration↩︎

Neuro-symbolic AI seeks to combine the robust pattern matching of neural networks with the precision of symbolic logic. Recent “agentic" frameworks have moved toward tool-augmented reasoning, where LLMs assign complex tasks, such as mathematical solving or structured planning, to specialized external modules [26], [27]. Our work aligns with recent pipelines that utilize LLMs for triplet extraction to build dynamic knowledge graphs [28], though we specifically focus on the performance degradation introduced when SLMs are used as the primary extractors in noisy, low-resource scenarios.

3 Methodology↩︎

Our framework (shown in Figure 1) adopts an agentic neuro-symbolic architecture where an SLM serves as the reasoning controller, assigning specialized tasks to symbolic and neural tools. This decoupling allows the model to ground its story understanding in explicit logical structures.

Figure 1: The proposed agentic loop. The SLM invokes extract_facts to populate a per-story Knowledge Graph, which is then processed by the get_hint tool to provide assistance for the final inference.

3.1 Agentic Tool Calling Mechanism↩︎

We define two primary tools that the SLM can invoke to enhance its zero-shot reasoning:

  • extract_facts(story): The SLM parses the story to extract kinship triplets \((u, rel, v)\). In our implementation, we follow a reversed edge direction where \((object, rel, subject)\), following the dataset’s logical schema.

  • get_hint(K_graph, target_pair): This tool queries a pre-trained Relational Graph Convolutional Network (RGCN), with the query-based Knowledge Graph \(K\_graph\) (generated by the extracted facts) as input. The expert (i.e., the RGCN) returns the most probable kinship relation and a confidence score \(\sigma\), which is then injected back into the SLM’s context.

The extract_facts tool utilizes a structured, zero-shot prompting strategy to distill story text into symbolic triplets. Given the constrained parameter count of our models, we enforce a strict output format to minimize parsing errors. The exact prompt template, including the kinship ontology and formatting constraints used to ensure consistent extraction across Gemma 3 and Llama 3.2, is provided in Appendix 6.
Moreover, adhearing to the dataset’s logical schema, we adopt a target-centric representation where a triplet \((u, r, v)\) indicates that node \(v\) is the \([r]\) of node \(u\). For instance, in a father-daughter relationship, an edge from the father to the daughter is labeled as “daughter", representing the relationship from the perspective of the target node. This reversed directionality is consistently maintained during the RGCN’s training phase. By grounding the get_hint tool in this specific directional logic, we ensure that the expert model’s message-passing layers correctly aggregate the hierarchical context needed to resolve multi-hop queries (e.g., traversing multiple”child" edges to infer a “grandchild" relation). This precision prevents the”logical inversion" errors common in standard LLM/SLM reasoning over complex family trees.

3.2 Knowledge Graph Construction and Extraction Noise↩︎

A core focus of this study is the realistic scenario, where triplets are extracted via zero-shot prompting rather than provided by an Oracle. This introduces extraction noise in the form of hallucinated edges or missing relations. We characterize this as a challenge of sequential deductive fragility: in a multi-hop reasoning task, a single error in the early extraction of a kinship link (e.g., mistaking a “sister" for a”cousin") propagates through the graph, leading to a catastrophic failure in the RGCN’s path-finding for high-hop queries. Additionally, missing a single kinship (i.e., a single relationship) might lead to disconnected nodes, hence making the subsequent task of kinship prediction by the RGCN more difficult (or in some cases infeasible).
To mitigate this phenomenon, we augment the extracted facts in a post-hoc manner by incorporating their corresponding inverse triplets. This approach ensures bidirectional information flow along the semantic chain, regardless of the original directionality of the facts as extracted by the SLM. Overall, the average recall of ground-truth facts per story was estimated to be approximately 71%.

3.3 RGCN Expert Training and Generalization↩︎

The get_hint tool is powered by an RGCN trained specifically on the training partition of the CLUTRR dataset. Crucially, the model is trained on stories with reasoning lengths of \(k \in \{2, 3, 4\}\) hops. We then evaluate its performance on test sets containing up to \(10\) hops. This setup tests the model’s ability for systematic generalization, applying learned kinship rules to reasoning chains significantly longer (up to five times longer) than those encountered during training. By providing these GNN-derived hints to the SLM, we aim to compensate for the “lost-in-the-middle" and context-window limitations typical of models in the 1B - 4B parameter range.

4 Experiments and Discussion↩︎

4.1 Experimental Setup↩︎

To evaluate the efficacy of our neuro-symbolic agentic framework, we standardize the training and inference parameters across all configurations. Our study utilizes three state-of-the-art open-weights models: Gemma 3 (1B, 4B) and Llama 3.2 (3B). The extract_facts tool is implemented via a zero-shot prompting strategy, as detailed in Appendix 6, while the expert reasoning is assigned to a Relational Graph Convolutional Network (RGCN).

The RGCN expert is configured with 4 layers to facilitate deep multi-hop message passing. We train the model for 20 epochs using the Adam optimizer with a learning rate of \(10^{-3}\). Following the standard CLUTRR evaluation protocol, the RGCN is trained exclusively on the training partition containing reasoning chains of \(k \in \{2, 3, 4\}\) hops. We then evaluate its zero-shot performance on test set, with queries needing 2 to 10 hops to be answered, to measure the model’s capacity for inductive logical generalization. All SLM inferences are conducted in a zero-shot setting to maintain the integrity of the agentic tool-calling paradigm without model-specific fine-tuning.

4.2 Performance in the Oracle Scenario↩︎

The quantitative results presented in Table 1 establish a strong contrast between theoretical reasoning capacity and practical zero-shot implementation. In the baseline (i.e., zero-shot prediction using only the Story as input), SLMs struggle significantly; for instance, Gemma 1B fails to exceed a 7.54% accuracy. This gap is dramatically bridged in the Oracle scenarios. When provided with a ground-truth Oracle Hint (i.e., the actual relation to be predicted), Llama 3.2 3B experiences a nearly 4x performance increase, reaching 62.79%. This increase suggests that the primary obstacle for SLMs is not a lack of linguistic comprehension, but rather an inability to maintain and query a consistent symbolic state over long, distracting contexts. Note that the last two rows in Table 1 correspond to the test accuracy of the RGCN, using Knowledge Graphs constructed by Oracle and SLM-extracted Facts respectively.

Table 1: Model performance (measured in Accuracy % ) across different prompt configurations.
Configuration Gemma 1B Llama 3B Gemma 4B
Story 7.54 16.13 13.45
Oracle Facts 7.73 19.08 15.84
Story + Oracle Facts 8.21 20.80 15.55
Story + Oracle Hint 34.16 62.79 59.16
Oracle Facts + Oracle Hint 28.24 61.83 74.43
Story + Oracle Facts + Oracle Hint 34.06 62.98 54.10
Story + SLM Facts 6.01 16.61 1.64
Story + GNN Hint (from SLM Facts) 12.60 20.32 19.75
Story + SLM Facts + GNN Hint (from SLM Facts) 12.40 20.52 14.98
Expert Performance
RGCN on Oracle Facts 60.69
RGCN on SLM Facts 24.88

In Figure 2, we illustrate the performance of each model and configuration, at each hop-level. Interestingly, the performance at the 2-hop baseline is not uniform across all architectures. While configurations utilizing the Oracle Hint generally achieve high accuracy, only specific variants, most notably within the higher-parameter Gemma models (i.e., Gemma 4B), approach near-perfect scores at this stage. As the reasoning depth increases, a clear divergence in architectural resilience emerges. The Llama-based models exhibit better robustness; despite the training distribution for the expert reasoning being capped at 4 hops, these models maintain or even improve their accuracy as the chain extends toward 10 hops, particularly in configurations utilizing Oracle Hints. This indicates both the capabilities of the RGCN expert in extracting relationships using multiple hops, even though it was trained in only up to 4 hops, and the efficiency of the SML in combining the expert hint with the Story.

In contrast, the Gemma 3 variants, show a more noticeable and immediate performance decay as reasoning depth increases beyond the 4-hop threshold. This disparity suggests that the Llama architecture may possess a superior capacity for structured logical injection and long-range symbolic integration, whereas the Gemma models, particularly at the 1B scale, appear more susceptible to the “Lost-in-the-Middle" phenomenon and contextual distraction in high-hop kinship queries, even when provided with high-quality guidance.

Figure 2: Model accuracy across queries with different hop-counts using Oracle-provided facts/hint. Performance tends to peak at hop counts up to 4, except mainly for the Llama-based models.

4.3 Performance in the Realistic Scenario↩︎

The transition to the Realistic scenario exposes the fragile nature of the neuro-symbolic loop. The RGCN expert, which achieves 60.69% accuracy on ground-truth facts, sees its performance collapse to 24.88% when operating on facts extracted by the SLMs (i.e., Gemma 4B). This drop confirms our hypothesis regarding sequential deductive fragility: because a multi-hop reasoning chain is only as strong as its weakest link, a single missed or hallucinated relation during the initial extract_facts phase renders the resulting knowledge graph logically unrecoverable for the GNN solver.

An interesting finding in our study is that providing both facts and hints to the model, is not always helpful. As seen in Table 1, for Gemma 4B, the configuration Story + GNN Hint (19.75%) notably outperforms Story + SLM Facts + GNN Hint (14.98%). This implies that the presence of noisy triplets acts as a “logical anchor" that misleads the SLM, even when a correct expert hint is available in the prompt. Interestingly, Llama 3.2 3B exhibits greater resilience to this effect, maintaining nearly identical performance (20.32% vs 20.52%) regardless of the inclusion of noisy facts. This suggests that Llama’s attention mechanism may be more efficient at filtering out symbolic noise in favor of high-confidence expert signals.

In Figure 3, we illustrate the performance of the different configurations across varying hop levels, now using SLM-based facts/hint. A clear “Reasoning Cliff" appears in this realistic scenario. While some oracle configurations maintain high accuracy after 4 hops, the realistic counterparts exhibit a catastrophic failure, performing with less than 20% accuracy. Interestingly, most models struggle to exceed 5% accuracy even for 2-hop chains. This indicates that the extraction process is most vulnerable at the point of initial fact grounding; if one of the few (two in this case) actual relations are not captured accurately, the GNN expert cannot provide a valid inference.

Performance generally peaks between 3 and 4 hops, where the relative density of the extracted graph may provide enough context for the GNN, before declining sharply. While the RGCN-derived hints provide a consistent 1.5 - 2x improvement over the story-only baseline for smaller models like Gemma 1B (moving from \(\sim\)​7.5% to 12.6%), the gain remains insufficient to overcome the compounding noise of high-hop extractions. This suggests that the bottleneck is not the reasoning capacity of the GNN, but the quality of the symbolic grounding.

Figure 3: Model accuracy across queries with different hop-counts using SLM-generated facts/hint. Note the overall reduction in accuracy compared to Oracle-based configurations.

5 Conclusion↩︎

In this work, we investigated the performance of neuro-symbolic agentic systems on zero-shot relational reasoning, by evaluating the integration of Small Language Models (SLMs) with Relational Graph Convolutional Networks (RGCNs). Our investigation using the CLUTRR benchmark demonstrates that while SLMs like Llama 3.2 and Gemma 3 possess the latent capacity for complex relational reasoning when provided with high-quality symbolic guidance, they are significantly constrained by an extraction bottleneck. We observed that early errors in the information extraction phase compound over multi-hop chains, leading to a collapse in accuracy, when queries need more than 4 hops to be answered. Furthermore, our results reveal a notable “Distraction Effect", where the inclusion of noisy, SLM-extracted facts can degrade performance even when expert hints are present in the context.
Future work will focus on implementing iterative symbolic refinement cycles to prune extraction hallucinations and investigating architecture-specific optimizations to better leverage the structural resilience observed in Llama-based models. Bridging this extraction gap remains essential for developing reliable, autonomous systems capable of causal grounding in open-domain environments.

GCP resources were provided by the National Infrastructures for Research and Technology GRNET and funded by the EU Recovery and Resiliency Facility.

Declaration on Generative AI↩︎

During the preparation of this work, the authors used GPT-5, Gemini 3, and Grammarly for the purposes of: Drafting content, Grammar and spelling check, Paraphrase and reword, Improve writing style.
After using these tools/services, the authors reviewed and edited the content as needed and take full responsibility for the publication’s content.

6 Prompts used in Language Models↩︎

The following table contains the prompts used for the different scenarios as explained in the Methodology Section 3. The available kinship relations appearing within the dataset are the following: aunt, brother, daughter, daughter-in-law, father, father-in-law, wife, husband, sister-in-law, granddaughter, grandfather, grandmother, grandson, mother, mother-in-law, nephew, niece, sister, son, son-in-law, uncle.

Different prompts used with SLMs. Preamble, Constraints, and Instructions are used as parts of subsequent prompt formulations.
Variant Prompt
Preamble You are a Formal Logic Compiler. You process kinship data as a directed graph. IMPORTANT: Treat all human names as abstract node identifiers. Disregard gender norms, social tropes, or cultural assumptions associated with these names. Output ONLY valid JSON. Task: Determine the relationship between A and B.
Constraints Constraints: - Path tracing direction: Identify how A (Subject) is related to B (Object). - The answer must be a single word from this list: <all available kinships>.
Instructions Instructions: 1. Identify the path: B -> ... -> A. 2. Calculate the composition of relationships along that path. 3. Output the result as: "answer": "term" 4. Logical facts may contain false information.
Story Preamble + Story: <story_text> + Constraints + Instructions
Story + Facts Preamble + Story: <story_text> + Logical Facts: <logical_facts> + Constraints + Instructions
Story + Hint Preamble + Story: <story_text> + Constraints + Hint: <expert_hint> + Instructions
Facts + Hint Preamble + Logical Facts: <logical_facts> + Constraints + Hint: <expert_hint> + Instructions
Story + Facts + Hint Preamble + Story: <story_text> + Logical Facts: <logical_facts> + Constraints + Hint: <expert_hint> + Instructions

Regarding the extract_facts procedure for Gemma 4B we use the following prompt:

"""    
You are an expert Information Extraction system.

Task: Extract all explicit kinship relationships from the short story below.
    
Story: "{story}"
    
    Instructions:
    1. Identify people names enclosed in brackets (e.g., [Alice]). Extract them WITHOUT brackets.
    2. Identify the relationship between them.
    3. IMPORTANT: Extract relations in an ASCENDANT fashion (Child -> Parent). E.g.: 
       - Use grandson/granddaughter instead of grandfather/grandmother.
       - Use son/daughter instead of father/mother.
     etc.
"""

References↩︎

[1]
N. Crispino, K. Montgomery, F. Zeng, D. Song, and C. Wang, “Agent instructs large language models to be general zero-shot reasoners,” in Forty-first international conference on machine learning, ICML 2024, vienna, austria, july 21-27, 2024, 2024, vol. 235, pp. 9458–9549, [Online]. Available: https://proceedings.mlr.press/v235/crispino24a.html.
[2]
T. Kojima, S. S. Gu, M. Reid, Y. Matsuo, and Y. Iwasawa, “Large language models are zero-shot reasoners,” in Advances in neural information processing systems 35: Annual conference on neural information processing systems 2022, NeurIPS 2022, new orleans, LA, USA, november 28 - december 9, 2022, 2022, [Online]. Available: http://papers.nips.cc/paper\_files/paper/2022/hash/8bb0d291acd4acf06ef112099c16f326-Abstract-Conference.html.
[3]
V. Sanh et al., “Multitask prompted training enables zero-shot task generalization,” in The tenth international conference on learning representations, ICLR 2022, virtual event, april 25-29, 2022, 2022, [Online]. Available: https://openreview.net/forum?id=9Vrb9D0WI4.
[4]
E. M. Bender, T. Gebru, A. McMillan-Major, and S. Shmitchell, “On the dangers of stochastic parrots: Can language models be too big?” in FAccT ’21: 2021 ACM conference on fairness, accountability, and transparency, virtual event / toronto, canada, march 3-10, 2021, 2021, pp. 610–623, doi: 10.1145/3442188.3445922.
[5]
E. Strubell, A. Ganesh, and A. McCallum, “Energy and policy considerations for modern deep learning research,” in The thirty-fourth AAAI conference on artificial intelligence, AAAI 2020, the thirty-second innovative applications of artificial intelligence conference, IAAI 2020, the tenth AAAI symposium on educational advances in artificial intelligence, EAAI 2020, new york, NY, USA, february 7-12, 2020, 2020, pp. 13693–13696, doi: 10.1609/AAAI.V34I09.7123.
[6]
J. Hoffmann et al., “Training compute-optimal large language models,” CoRR, vol. abs/2203.15556, 2022, doi: 10.48550/ARXIV.2203.15556.
[7]
C. V. Nguyen et al., “A survey on small language models,” in Proceedings of the 15th international conference on recent advances in natural language processing - natural language processing in the generative AI era, RANLP 2025, varna, bulgaria, september 8-10, 2025, 2025, pp. 807–821, [Online]. Available: https://aclanthology.org/2025.ranlp-1.93/.
[8]
Z. Lu et al., “Small language models: Survey, measurements, and insights,” CoRR, vol. abs/2409.15790, 2024, doi: 10.48550/ARXIV.2409.15790.
[9]
P. Belcak et al., “Small language models are the future of agentic AI.” 2025, [Online]. Available: https://arxiv.org/abs/2506.02153.
[10]
J. Kaplan et al., “Scaling laws for neural language models,” CoRR, vol. abs/2001.08361, 2020, [Online]. Available: https://arxiv.org/abs/2001.08361.
[11]
J. Wei et al., “Emergent abilities of large language models,” Trans. Mach. Learn. Res., vol. 2022, 2022, [Online]. Available: https://openreview.net/forum?id=yzkSU5zdwD.
[12]
J. Wei et al., “Chain-of-thought prompting elicits reasoning in large language models,” in Advances in neural information processing systems 35: Annual conference on neural information processing systems 2022, NeurIPS 2022, new orleans, LA, USA, november 28 - december 9, 2022, 2022, [Online]. Available: http://papers.nips.cc/paper\_files/paper/2022/hash/9d5609613524ecf4f15af0f7b31abca4-Abstract-Conference.html.
[13]
K. Sinha, S. Sodhani, J. Dong, J. Pineau, and W. L. Hamilton, “CLUTRR: A diagnostic benchmark for inductive reasoning from text,” in Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP), 2019, pp. 4506–4515.
[14]
J. Kaplan et al., “Scaling laws for neural language models,” CoRR, vol. abs/2001.08361, 2020, [Online]. Available: https://arxiv.org/abs/2001.08361.
[15]
Z. Ji et al., “Survey of hallucination in natural language generation,” ACM Computing Surveys, vol. 55, no. 12, pp. 1–38, Mar. 2023, doi: 10.1145/3571730.
[16]
E. M. Bender, T. Gebru, A. McMillan-Major, and S. Shmitchell, “On the dangers of stochastic parrots: Can language models be too big?” in Proceedings of the 2021 ACM conference on fairness, accountability, and transparency, 2021, pp. 610–623, doi: 10.1145/3442188.3445922.
[17]
M. S. Schlichtkrull, T. N. Kipf, P. Bloem, R. van den Berg, I. Titov, and M. Welling, “Modeling relational data with graph convolutional networks,” in The semantic web - 15th international conference, ESWC 2018, heraklion, crete, greece, june 3-7, 2018, proceedings, 2018, vol. 10843, pp. 593–607, doi: 10.1007/978-3-319-93417-4\_38.
[18]
G. T. et al., “Gemma 3 technical report.” 2025, [Online]. Available: https://arxiv.org/abs/2503.19786.
[19]
A. G. et al., “The llama 3 herd of models.” 2024, [Online]. Available: https://arxiv.org/abs/2407.21783.
[20]
T. N. Kipf and M. Welling, “Semi-supervised classification with graph convolutional networks,” in 5th international conference on learning representations, ICLR 2017, toulon, france, april 24-26, 2017, conference track proceedings, 2017, [Online]. Available: https://openreview.net/forum?id=SJU4ayYgl.
[21]
P. Lepagnol, T. Gerald, S. Ghannay, C. Servan, and S. Rosset, “Small language models are good too: An empirical study of zero-shot classification,” in Proceedings of the 2024 joint international conference on computational linguistics, language resources and evaluation (LREC-COLING 2024), May 2024, pp. 14923–14936, [Online]. Available: https://aclanthology.org/2024.lrec-main.1299/.
[22]
B. Steele and M. Katz, “Scaling trends for multi-hop contextual reasoning in mid-scale language models.” 2026, [Online]. Available: https://arxiv.org/abs/2601.04254.
[23]
N. F. Liu et al., “Lost in the middle: How language models use long contexts,” Trans. Assoc. Comput. Linguistics, vol. 12, pp. 157–173, 2024, doi: 10.1162/TACL\_A\_00638.
[24]
Z. Zhang et al., “Catastrophic failure of LLM unlearning via quantization,” in The thirteenth international conference on learning representations, ICLR 2025, singapore, april 24-28, 2025, 2025, [Online]. Available: https://openreview.net/forum?id=lHSeDYamnz.
[25]
Z. Sadeddine and F. M. Suchanek, “Verifying the steps of deductive reasoning chains,” in Findings of the association for computational linguistics: ACL 2025, Jul. 2025, pp. 456–475, doi: 10.18653/v1/2025.findings-acl.25.
[26]
Z. Gou et al., “ToRA: A tool-integrated reasoning agent for mathematical problem solving,” CoRR, vol. abs/2309.17452, 2023, doi: 10.48550/ARXIV.2309.17452.
[27]
D. Das, D. Banerjee, S. Aditya, and A. Kulkarni, MATHSENSEI: A tool-augmented large language model for mathematical reasoning,” in Proceedings of the 2024 conference of the north american chapter of the association for computational linguistics: Human language technologies (volume 1: Long papers), NAACL 2024, mexico city, mexico, june 16-21, 2024, 2024, pp. 942–966, doi: 10.18653/V1/2024.NAACL-LONG.54.
[28]
P.-L. Huguet Cabot and R. Navigli, REBEL: Relation extraction by end-to-end language generation,” in Findings of the association for computational linguistics: EMNLP 2021, Nov. 2021, pp. 2370–2381, doi: 10.18653/v1/2021.findings-emnlp.204.