Paper deep dive
Better Decomposition, Free Aggregation: A Synthesizer-Folding Framework for Multilingual Multi-Hop Question Answering
Yilin Wang, Yuchun Fan, Weidong Bao, Zili Wei, Shi Feng, Tong Xiao, Zhengtao Yu, Jingbo Zhu
Intelligence
Status: succeeded | Model: Gemma-4-26B-A4B | Prompt: intel-v1 | Confidence: 91%
Last extracted: 8/14/2026, 6:19:01 AM
Summary
The paper introduces Syfer, a synthesizer-folding framework for multilingual multi-hop question answering (mRAG) that addresses limitations in existing translation and decomposition methods. Syfer defers translation by default, using a format-constrained decomposer to create a sub-question graph in the original language. It employs a quality check to decide whether to proceed with monolingual reasoning or activate a bilingual fallback pathway. This approach reduces translation noise, prevents error compounding from redundant sub-questions, and folds aggregation into the final sub-question, achieving competitive accuracy with lower computational cost across nine languages.
Entities (14)
Relation Signals (11)
Syfer ā addresses ā Multilingual Retrieval-Augmented Generation
confidence 95% Ā· We address both with our method Syfer, a synthesizer-folding framework for multilingual multi-hop question answering
Jingbo Zhu ā affiliatedwith ā Northeastern University
confidence 95% Ā· Jingbo Zhu ... Affiliation: School of Computer Science and Engineering, Northeastern University
Yilin Wang ā affiliatedwith ā Northeastern University
confidence 95% Ā· Yilin Wang ... Affiliation: School of Computer Science and Engineering, Northeastern University
Syfer ā evaluatedon ā HotpotQA
confidence 95% Ā· We evaluate Syfer on HotpotQA [29]
Syfer ā evaluatedon ā 2WikiMultiHopQA
confidence 95% Ā· We evaluate Syfer on ... 2WikiMultiHopQA (2Wiki) [9]
Syfer ā evaluatedon ā MuSiQue
confidence 95% Ā· We evaluate Syfer on ... MuSiQue [23]
Syfer ā outperforms ā HippoRAG2
confidence 90% Ā· Syfer attains competitive accuracy against strong baselines... HippoRAG2 is the strongest English baseline
Syfer ā outperforms ā DAPT
confidence 90% Ā· On the most challenging benchmark MuSiQue, Syfer still improves over the strongest decomposition-based baseline by +8.91 F1
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Multilingual retrieval-augmented generation (mRAG) equips large language models with access to globally distributed external knowledge for complex multilingual question answering. Recent approaches either translate retrieved documents into English or the query language to bridge the cross-lingual semantic gap, or decompose a complex query into sub-questions and aggregate the intermediate reasoning process. However, both lines of work suffer from two limitations. First, one-size-fits-all translation alignment, blanket translation discards culturally and linguistically native information unique to the target language, introduces translation noise, and inflates system cost. Second, greedy decomposition and aggregation, uncontrolled decomposition produces redundant sub-questions that compound errors during step-wise reasoning, and the final aggregation over reasoning paths further amplifies these errors. We address both with our method Syfer, a synthesizer-folding framework for multilingual multi-hop question answering that defers translation rather than applying it by default. Syfer first invokes a format-constrained decomposer to produce a sub-question graph in the original language, followed by a decomposition-quality check; when the check passes, sub-questions are answered sequentially under a retrieve-then-answer policy in the target language, and the English translation pathway with bilingual sub-question graph alignment is activated only when the check fails. Experiments across multiple languages show that Syfer attains competitive accuracy while striking a favourable balance between performance and computational cost.
Tags
Links
- Source: https://arxiv.org/abs/2608.13160v1
- Canonical: https://arxiv.org/abs/2608.13160v1
Trouble viewing inline? Open PDF directly ā
Full Text
36,678 characters extracted from source content.
Expand or collapse full text
Better Decomposition, Free Aggregation: A Synthesizer-Folding Framework for Multilingual Multi-Hop Question Answering Yilin Wang OrcID: 0009-0009-2393-2330 Affiliation: School of Computer Science and Engineering, Northeastern University, Shenyang, China Yuchun Fan Affiliation: School of Computer Science and Engineering, Northeastern University, Shenyang, China Weidong Bao Affiliation: School of Computer Science and Engineering, Northeastern University, Shenyang, China Zili Wei Affiliation: School of Computer Science and Engineering, Northeastern University, Shenyang, China Shi Feng Affiliation: School of Computer Science and Engineering, Northeastern University, Shenyang, China Tong Xiao Affiliation: School of Computer Science and Engineering, Northeastern University, Shenyang, China Zhengtao Yu Affiliation: Yunnan Key Laboratory of Artificial Intelligence, Kunming University of Science and Technology, Kunming, China E-mail wangyilin0409@gmail.com Jingbo Zhuā Affiliation: School of Computer Science and Engineering, Northeastern University, Shenyang, China Abstract Multilingual retrieval-augmented generation (mRAG) equips large language models with access to globally distributed external knowledge for complex multilingual question answering. Recent approaches either translate retrieved documents into English or the query language to bridge the cross-lingual semantic gap, or decompose a complex query into sub-questions and aggregate the intermediate reasoning process. However, both lines of work suffer from two limitations. First, one-size-fits-all translation alignment, blanket translation discards culturally and linguistically native information unique to the target language, introduces translation noise, and inflates system cost. Second, greedy decomposition and aggregation, uncontrolled decomposition produces redundant sub-questions that compound errors during step-wise reasoning, and the final aggregation over reasoning paths further amplifies these errors. We address both with our method Syfer, a synthesizer-folding framework for multilingual multi-hop question answering that defers translation rather than applying it by default. Syfer first invokes a format-constrained decomposer to produce a sub-question graph in the original language, followed by a decomposition-quality check; when the check passes, sub-questions are answered sequentially under a retrieve-then-answer policy in the target language, and the English translation pathway with bilingual sub-question graph alignment is activated only when the check fails. Experiments across multiple languages show that Syfer attains competitive accuracy while striking a favourable balance between performance and computational cost. The code and data will be available at https://github.com/f6ster/Syfer Keywords: Multilingual question answering Multi-hop reasoning Question decomposition Retrieval-augmented generation Large language model. 1 Introduction Retrieval-augmented generation (RAG) grounds large language models (LLMs) in external knowledge to improve factuality and mitigate hallucination on knowledge-intensive tasks [11, 12, 13, 16]. However, in the multilingual setting, the training distribution of LLMs is highly skewed toward English and other high-resource languages, leaving a persistent capability gap on mid- and low-resource languages [6, 7, 10, 30]. This motivates multilingual RAG (mRAG), which lets the model draw on multilingual collections to compensate for capability gaps and to recover information that is unevenly distributed across languages. Existing mRAG systems handle single-hop multilingual queries well [3, 20] but struggle on multilingual multi-hop QA, where the LLM must also collect and integrate clues scattered across documents in different languages. The dominant remedy translates either the query or retrieved documents to align languages [18, 19, 21]; a more refined line decomposes the query into a bilingual sub-question graph and aggregates per-hop answers [2, 25, 27], which delivers stronger interpretability and currently represents one of the strongest design points on this task Figure 1: Two structural issues in prior decomposition-based mRAG and how Syfer addresses them. Top: one-size-fits-all translation injects noise, and an end-of-pipeline aggregation call concentrates intermediate errors. Bottom: Syfer reasons in the query language by default, falls back to a cross-lingual pathway only when faithfulness fails, and folds aggregation into a terminal sub-question. Despite these advances, two structural issues remain, illustrated in Figure 1. (i) One-size-fits-all translation: forcibly aligning native-language documents to the query language incurs a heavy translation cost and tends to inject translation noise that is later answer as evidence. (i) Greedy decomposition and aggregation: uncontrolled decomposition produces a sub-question graph that is often redundant and logically incoherent, where minor errors in intermediate reasoning propagate and compound. Besides, the final aggregation call is logically independent of the decomposition process, it concentrates rather than absorbs decomposition noise, breaking the reasoning chain and yielding incorrect answers. We address both issues with Syfer, a Synthesizer-Folding framework for multilingual multi-hop question answering. Syfer keeps the decomposition-based backbone but makes two changes. First, translation becomes decomposition-driven: the framework reasons in the original language by default and activates the cross-lingual pathway only when the produced sub-question graph fails a quality check, after which an English-parallel graph is decomposed and fused for recovery. Second, decomposition becomes synthesizer-folded: a trained decomposer constrains the breadth and format of sub-questions and emits a terminal sub-question in the same logical layer as its peers. This terminal sub-question serves as a synthesis question over the prior reasoning chain, so the generator answers it directly instead of performing a separate aggregation over a long intermediate trace. As a result, aggregation is folded into decomposition and decomposition quality becomes directly checkable. We further extend the multilingual multi-hop benchmarks introduced by [25] into a more comprehensive testbed spanning five language families and nine languages across high-, mid-, and low-resource regimes. Across three benchmarks and nine languages, Syfer not only attains competitive accuracy against strong baselines but also achieves a more favourable balance between performance, computational cost, and latency. The same experiments expose an interesting finding: unconditional fusion of an English-parallel sub-question graph into the reasoning trace is in fact sub-optimal on queries that decompose cleanly, since these queries already correspond to low-complexity reasoning, and a redundant English-side graph injects choices that confuse the generator rather than help it. In summary, the main contributions of this paper are as follows: ⢠We propose Syfer, a multilingual RAG framework that introduces synthesizer folding, the end-of-pipeline aggregation call is replaced by a terminal sub-question emitted by the decomposer in the same logical layer as its peers, placing decomposition and aggregation in a single logical pass and making decomposition quality directly verifiable. ⢠We extend three multilingual multi-hop QA benchmarks into a unified testbed covering five language families and nine languages across high-, mid- and low-resource regimes, providing a comprehensive evaluation suite for future multilingual RAG systems. ⢠Across three benchmarks and nine languages, Syfer attains strong accuracy and a favourable cost-performance balance against competitive baselines. On the most challenging benchmark MuSiQue, Syfer still improves over the strongest decomposition-based baseline by +8.91+8.91 F1 (+29.8%+29.8\% relative) averaged over nine languages. 2 Related Work 2.1 RAG Systems for Multi-hop QA Multi-hop question answering requires a RAG system to retrieve and integrate evidence scattered across multiple documents. Existing methods mainly follow two directions: iterative retrieval that progressively refines supporting evidence [14, 22, 24, 26], and structured retrieval over trees or graphs that guides the LLM toward clue-dense documents or relevant context spans [2, 5, 8, 27]. These methods, however, largely rely on the English-side understanding ability of the underlying LLM. In multilingual settings with parallel documents and mid/low-resource languages, such structures can introduce redundant evidence and amplify extraction noise, reducing downstream RAG effectiveness. 2.2 Multilingual RAG Multilingual RAG (mRAG) has primarily improved cross-lingual access through translation and alignment strategies [3, 18, 19, 21, 20, 30]. These approaches typically translate the query into a high-resource pivot language or translate retrieved documents into the query language. While useful for language-aligned tasks, indiscriminate translation injects noise into the evidence and increases inference cost. Closer to our setting, DaPT [25] applies question decomposition to multilingual multi-hop QA, but its unconstrained decomposition produces long intermediate contexts and remains vulnerable to lost-in-the-middle effects [17]. In contrast, Syfer keeps reasoning in the original language by default and activates cross-lingual machinery only when the in-language decomposition fails a quality check. It further constrains the decomposition format and folds aggregation into a terminal sub-question, reducing both unnecessary translation and dependence on long intermediate reasoning traces. 3 Methodology Given a query Q in language L and a multilingual corpus C, Syfer retrieves evidence from C and uses the generator to produce the final answer A. As shown in Fig. 2, the framework consists of four stages: offline logical-decomposition distillation, synthesizer-folded decomposition, faithfulness verification with bilingual fallback, and cross-lingual retrieval-and-answering. The following subsections describe these stages in order. 3.1 Logical Decomposition Distillation A natural alternative is to invoke a frontier LLM to decompose every test query online, but this makes inference expensive and leaves decomposition quality hard to verify before answering. We instead distil a standalone decomposer on a corpusāquery pool held out from evaluation, so that synthesizer folding is learned offline. The teacher model maps each query Q to an acyclic sub-question DAG DāD^* with a unique terminal node and placeholder dependencies. We keep only decompositions whose filled terminal sub-question remains close to Q in the retriever embedding space: cosā”(ā”(qnfilled),ā”(Q))ā„Ļconstraint, \! (e(q_n^filled),\;e(Q) )\;ā„\; _constraint, (1) where ā”(ā )e(Ā·) is the retriever embedding. This filtering yields the supervision set train=(Q(k),Dā(k))k=1ND_train=\(Q^(k),D^*(k))\_k=1^N. Each DāD^* is linearised into a token sequence y=(y1,ā¦,yT)y=(y_1,ā¦,y_T) that preserves node order and edge structure. The student decomposer with parameters Īø is trained by token-level cross-entropy: āDistill(Īø)=ā(Q,y)ā¼traināt=1TlogpĪø(yt|Q,y<t),Īøā=argminĪøāDistill(Īø).L_Distill(Īø)\;=\;-\,E_(Q,\,y) _train _t=1^T p_Īø\! (y_t\, |\,Q,\,y_<t ), Īø^*\;=\; _Īø\;L_Distill(Īø). (2) The trained ĪøāĪø^* defines the inference-time decomposer in Section 3.2 and is reused, without branch-specific fine-tuning, by the bilingual fallback in Section 3.3. Figure 2: Overview of Syfer: synthesizer-folded decomposition, faithfulness verification with bilingual fallback, and cross-lingual retrieval-and-answering. 3.2 Synthesizer-Folded Decomposition Conventional multi-hop RAG ends with a dedicated aggregation call over (Q,q1:n,a1:n)(Q,q_1:n,a_1:n), where most cross-lingual noise accumulates. Syfer removes this call by letting the decomposer emit a terminal sub-question that, once filled, already speaks for Q. Concretely, given Q in language L, DL=DecomposeĪøāā(Q),DL=(VL,EL),D_L\;=\;Decompose_Īø^*(Q), D_L=(V_L,E_L), (3) with VL=q1,ā¦,qnV_L=\q_1,ā¦,q_n\ and ELāVLĆVLE_L V_LĆ V_L. An edge (qi,qj)āEL(q_i,q_j)ā E_L indicates that the answer aia_i is required to instantiate qjq_j; substituting aia_i for each placeholder #āi\#i (i<ji<j) in qjq_j yields the filled form qjfilledq_j^filled. The graph is acyclic and exposes a unique terminal node qnq_n. Trained under Eq. (1), the terminal node is no longer an arbitrary leaf but a learned slot whose filled form encodes both Q and the prior sub-answers, so that answering it against the corpus is, by construction, equivalent to aggregating. 3.3 Faithfulness Verification and Bilingual Fallback Even a well-trained decomposer is not fully reliable, for difficult queries, the filled terminal sub-question may drift away from the original query Q. Syfer therefore verifies the terminal sub-question before retrieval and uses bilingual fallback only when the monolingual decomposition appears unfaithful. Formally, scoreā”(DL) (D_L) =cosā”(ā”(qnfilled),ā”(Q)), = \! (e(q_n^filled),\,e(Q) ), (4) Routeā”(DL) (D_L) =DL,scoreā”(DL)ā„Ļconstraint,BilingualFallbackā”(DL,Q),scoreā”(DL)<Ļconstraint. = casesD_L,&score(D_L)ā„ _constraint,\\ BilingualFallback(D_L,Q),&score(D_L)< _constraint. cases Thus, translation is not a default operation but a recovery path for queries whose in-language decomposition cannot be trusted. When fallback is triggered, Syfer translates Q into English, decomposes the English query with the same decomposer, and aligns the English DAG with the original-language DAG by node similarity: (qiLā,qjenā)=argmaxqiLāVL,qjenāVensim((qiL),(qjen)).(q_i^L*,q_j^en*)= _q_i^Lā V_L,\,q_j^enā V_ensim\! (e(q_i^L),\,e(q_j^en) ). (5) Node pairs above the alignment threshold Ļalign _align are fused, yielding a bilingual graph DF=Fuseā”(DL,Den),D_F=Fuse(D_L,D_en), (6) 3.4 Cross-Lingual Retrieval and Answering The output of the previous stage is either a monolingual graph DLD_L or a fused bilingual graph DFD_F. Syfer solves either graph in topological order, so each sub-question is answered only after the sub-questions it depends on: S=(v1,ā¦,vm)=TopoSortā”(D),DāDL,DF.S=(v_1,ā¦,v_m)=TopoSort(D), Dā\D_L,D_F\. (7) For a monolingual node, Syfer retrieves with the target-language sub-question; for a bilingual node, it retrieves with both the target-language and English sub-questions and merges the candidates: Ri=Retrieveā”(qifilled,L,),viāVLāVbi,Retrieveā”(qifilled,L,)āŖRetrieveā”(qjfilled,en,),viāVbi.R_i= casesRetrieve(q_i^filled,L,C),&v_iā V_L V_bi,\\ Retrieve(q_i^filled,L,C) (q_j^filled,en,C),&v_iā V_bi. cases (8) Because the corpus contains document-aligned translations, the merged candidates may include several language versions of the same evidence. Syfer applies maximal marginal relevance (MMR) to keep documents that are both relevant to the current sub-question and different from documents already selected: dā=argā”maxdāRiāSiāĪ»āsimā(ā”(qifilled),ā”(d))ā(1āĪ»)āmaxdā²āSiā”simā”(ā”(d),ā”(dā²)),d^*= _dā R_i S_i\;Ī»\,sim(e(q_i^filled),e(d))\,-\,(1-Ī»)\, _d ā S_i\,sim(e(d),e(d )), (9) where SiS_i is the selected document set and Ī» balances relevance and diversity. In plain terms, MMR prefers documents that match the sub-question while avoiding near-duplicate parallel translations. Given the filtered evidence RiR_i, the generator produces one short answer per node, optionally using both language views for bilingual nodes: ai=Answerā”(qifilled,L,Ri),viāVLāVbi,Answerā”(qifilled,L,qjfilled,en,Ri),viāVbi.a_i= casesAnswer(q_i^filled,L,R_i),&v_iā V_L V_bi,\\ Answer(q_i^filled,L,q_j^filled,en,R_i),&v_iā V_bi. cases (10) Each answer is substituted into later sub-questions, and the answer to the terminal node is returned as the final answer: A=am.A=a_m. (11) This completes the synthesizer-folded pipeline without a separate final aggregation call. 4 Experiments 4.1 Datasets We evaluate Syfer on HotpotQA [29], 2WikiMultiHopQA (2Wiki) [9] and MuSiQue [23], using the same 1,000 query test split per benchmark as HippoRAG2 [8]. To assess multilingual mRAG behaviour more comprehensively, we use GPT-4o [15] to translate and extend the original English-only multi-hop test pool into nine languages spanning low, mid, and high-resource regimes across five language families. To ensure translation quality, we maintain a per-document entity table during translation so that entity names remain consistent across questions, supporting passages, and sub-questions. 4.2 Baselines We compare Syfer with five representative baselines of multilingual multi-hop QA: (i) Zero-shot LLM and (i) Vanilla RAG, which answer without retrieval and with single-shot retrieval on the original query, respectively; (i) HippoRAG2 [8], a strong structure-aware graph-RAG baseline operating over a triple-indexed knowledge graph; (iv) CrossRAG [21], a retrieve-then-translate baseline that first retrieves documents on the multilingual corpus and then translates the retrieved documents into the query language before generating the response; and (v) DaPT [25], a decomposition-based mRAG baseline that decomposes the query into a sub-question DAG and fuses each sub-question with its English-parallel counterpart at every hop. 4.3 Metrics We report Exact Match (EM) and token-level F1 on the predicted answer string against the reference answer in the query language. EM assigns a score of 11 only when the normalized prediction exactly matches the ground truth and 00 otherwise. F1 measures token-level similarity by computing the harmonic mean of Precision and Recall, where Precision reflects the proportion of predicted tokens that are correct and Recall denotes the proportion of reference tokens successfully retrieved. Following MuSiQue [23], predictions and references are normalized with language-specific tokenization, lowercasing, and punctuation rules so that scores are comparable across the nine languages. 4.4 Implementation Details Backbones. To avoid model family preference, we use DeepSeek-V4 Pro [4] as the answering model for Syfer and for all baselines that require a generator. This decouples answer generation from both the decomposer family (Qwen) and the test-set translation model (GPT-4o), so that the three modeling layers do not share a common backbone and same-family confounders are ruled out in the cross-lingual evaluation. Retrieval setup. We use BGE-m3 [1] as the multilingual retriever for all methods, indexing the union of the nine-language corpora and retrieving top-āk=5top-k=5 documents per query. The faithfulness gating threshold of Syfer is Ļconstraint=0.8 _constraint=0.8, the cross-lingual node alignment threshold is Ļalign=0.6 _align=0.6, and the MMR trade-off is Ī»=0.6Ī»=0.6. Logical decomposition distillation. We sample a decomposer-training pool from the official training splits of the three benchmarks, disjoint from all test queries. Training-side translation and annotation are produced by Qwen3-235B-A22B-Instruct-2507 [28], used as the teacher model. For Syfer, we curate 59,688 decomposition records covering six in-distribution languages: English (En), Chinese (Zh), German (De), Spanish (Es), Swahili (Sw), and Thai (Th). French (Fr), Bengali (Bn), and Korean (Ko) are held out as out-of-distribution evaluation languages. We fine-tune Qwen3-8B [28] as the student decomposer for 22 epochs with a global batch size of 64 and learning rate of 2Ć10ā42Ć10^-4. Training is conducted on 8Ć8ĆNVIDIA H800 80 GB GPUs with Intel(R) Xeon(R) Platinum 8468V CPUs. 4.5 Main Results Table 1: EM and F1 scores across nine languages on the three multilingual multi-hop QA datasets we constructed. Avg. denotes the average score across languages. Bold values indicate the best performance within each group. Method En Zh De Es Sw Th Fr Bn Ko Avg. EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 HotpotQA Zero-shot 18.6 28.2 10.2 27.9 13.1 21.0 14.3 23.6 8.8 15.4 13.2 40.0 15.1 22.7 8.2 14.0 7.7 23.7 12.1 24.1 Vanilla RAG 35.4 48.4 24.8 42.9 25.4 38.8 22.1 35.3 26.4 41.1 22.6 44.2 15.1 27.3 8.4 21.2 12.3 33.1 21.4 36.9 CrossRAG 34.6 47.5 13.4 30.2 24.6 37.5 22.3 35.3 25.8 40.5 21.5 41.4 16.3 27.7 5.3 18.2 8.9 26.9 19.2 33.9 HippoRAG2 44.9 57.9 22.6 47.8 36.4 49.4 35.9 51.1 34.6 46.1 20.3 45.6 33.8 47.2 22.3 35.7 15.9 36.8 29.6 46.4 DaPT 48.1 59.3 32.6 49.7 48.2 60.3 47.6 60.7 37.5 47.3 29.5 44.1 42.8 56.0 22.2 33.1 25.6 41.9 37.1 50.3 Syfer 57.5 69.9 39.4 61.2 50.0 63.6 49.5 64.7 50.5 62.5 43.8 63.9 45.1 59.4 36.8 49.2 37.3 47.4 45.5 60.2 2WikiMultiHopQA Zero-shot 25.5 30.9 24.3 34.6 17.5 25.9 21.1 28.8 19.8 24.1 23.8 43.6 26.3 30.9 14.4 21.8 17.9 28.8 21.2 29.9 Vanilla RAG 17.8 24.9 8.6 23.0 11.9 21.5 7.6 15.3 12.7 22.8 15.7 31.2 2.8 11.7 0.8 11.0 5.6 18.8 9.3 20.0 CrossRAG 19.2 25.4 5.4 21.1 11.0 21.3 8.0 15.3 14.9 24.4 16.5 31.7 2.8 11.6 0.4 9.9 3.5 15.9 9.1 19.6 HippoRAG2 56.0 65.0 21.5 45.0 45.2 56.1 44.4 57.1 40.3 49.5 32.4 52.1 42.5 52.9 22.5 32.7 20.8 36.8 36.2 49.7 DaPT 34.7 39.3 30.0 45.0 43.9 50.9 43.1 50.1 32.7 36.5 26.2 34.7 41.3 50.2 24.3 34.2 29.7 41.0 34.0 42.4 Syfer 67.5 75.2 42.8 61.7 64.2 72.4 64.6 73.2 60.4 68.3 57.3 71.3 59.0 68.1 45.1 53.7 45.9 59.2 56.3 67.0 MuSiQue Zero-shot 2.5 10.3 1.4 20.8 2.0 6.8 1.3 10.2 0.2 5.1 0.9 30.0 1.3 9.4 1.1 5.5 2.4 22.2 1.5 13.4 Vanilla RAG 19.7 30.1 10.0 24.7 13.1 24.3 10.6 21.2 13.3 23.9 6.5 32.0 6.7 16.9 1.8 10.5 8.2 24.1 10.0 23.1 CrossRAG 19.9 30.3 4.9 18.7 11.4 23.1 9.3 20.3 12.4 22.2 5.2 28.4 6.5 16.7 1.6 8.7 6.3 21.0 8.6 21.1 HippoRAG2 24.3 35.9 7.8 30.9 17.2 26.3 17.4 31.2 14.9 25.5 4.5 35.6 16.2 29.1 7.6 17.8 8.0 28.6 13.1 29.0 DaPT 28.1 35.6 19.1 34.0 24.8 34.5 24.6 36.0 16.7 23.9 9.1 27.0 19.8 31.6 9.4 18.3 12.6 28.1 18.2 29.9 Syfer 40.9 51.4 22.4 40.7 30.1 41.6 29.1 42.2 30.5 39.9 20.0 47.1 11.0 19.9 15.8 27.1 20.0 39.4 24.4 38.8 Table 1 reports EM and F1 of Syfer and the five baselines across nine languages on HotpotQA, 2WikiMultiHopQA, and MuSiQue. We organize the analysis around four observations. Single step retrieval is fundamentally insufficient for multi-hop QA, regardless of language alignment. Vanilla RAG and CrossRAG both plateau at low EM/F1 across datasets and languages, and CrossRAGās retrieve-then-translate strategy fails to consistently improve over Vanilla RAG. The bottleneck is therefore not only cross-lingual mismatch but also one-shot retrievalās inability to gather all evidence for a compositional query, motivating decomposition-based pipelines. Structured graph indexing transfers poorly out of English. HippoRAG2 is the strongest English baseline, but its advantage weakens on the multilingual corpus: from English to the nine-language average, its F1 drops by 23.6%23.6\% on 2Wiki (65.0ā49.765.0ā 49.7), 19.8%19.8\% on HotpotQA (57.9ā46.457.9ā 46.4), and 19.3%19.3\% on MuSiQue (35.9ā29.035.9ā 29.0). The drop is especially visible on Zh, Th, Bn, and Ko, suggesting that graph indexing based on LLM-extracted entities and relations is fragile when applied to heterogeneous multilingual evidence. The resulting cross-lingual noise and redundant edges then propagate into downstream retrieval. Syfer consistently enhances mRAG on multilingual multi-hop QA. DaPT applies bilingual decomposition at every hop, so noisy sub-branches can still enter the final aggregation. Syfer instead gates bilingual reasoning by decomposition faithfulness (Eq. (4)) and returns the terminal sub-question answer directly (Eq. (1)), reducing the chance that unreliable branches dominate the final prediction. Empirically, Syfer achieves the largest average gain on 2Wiki, improving over the strongest baseline by +17.3+17.3 F1 and +20.1+20.1 EM, and remains robust on the harder MuSiQue benchmark with +8.9+8.9 F1 and +6.2+6.2 EM over DaPT. The same trend appears on HotpotQA and on the held-out OOD languages Fr, Bn and Ko, suggesting that the noise-suppression mechanism transfers beyond the languages used for decomposer training. Syfer attains a more favourable accuracyācost balance than competing baselines. Figure 3 plots the accuracyācost Pareto fronts of Syfer against the five baselines, and Syfer achieves a better balance between accuracy and inference cost than every competitor. Notably, HippoRAG2 additionally requires hours of offline graph-index construction before any query can be served, an overhead that grows further as the corpus size increases. 4.6 Ablation Study Table 2: Ablation performance on multilingual HotpotQA. Bold values indicate the best performance within each group. Variant Zh De Es Sw Th Fr Bn Ko Avg. EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 EM F1 Full Syfer 39.4 61.2 50.0 63.6 49.5 64.7 50.5 62.5 43.8 63.9 45.1 59.4 36.8 49.2 37.3 47.4 44.1 59.0 w/o Folding 33.2 52.0 49.5 62.7 50.8 63.2 35.9 44.4 31.6 47.4 44.0 56.9 26.9 38.9 30.2 46.2 37.8 51.4 w/o Verification 33.0 50.5 48.8 60.9 47.9 60.8 32.5 41.0 28.7 42.9 42.4 56.8 22.4 33.3 25.8 42.1 35.2 48.5 w/o MMR 35.9 52.8 40.5 50.6 42.9 55.0 27.1 34.2 26.6 41.5 35.2 48.0 22.6 34.4 26.1 43.9 32.1 45.1 Always Bilingual 31.2 47.4 43.5 54.1 44.1 56.2 29.8 37.7 27.8 43.2 36.3 49.3 17.9 28.8 22.8 37.8 31.7 44.3 We ablate the four core components of Syfer on the eight-language multilingual test pool and report the average EM/F1 in Table 2. The ablated variants are: (i) w/o Folding, which restores the classical end-of-pipeline aggregation call; (i) w/o Verification, which always commits the monolingual branch, never triggering the bilingual fallback; (i) Always Bilingual, which keeps synthesizer folding but disables the faithfulness gate, running the bilingual branch at every hop unconditionally; (iv) w/o MMR, which replaces cross-lingual MMR with vanilla top-k. Figure 3: Accuracyācost Pareto fronts on the multilingual multi-hop QA pool. sub-figure (a): accuracy versus end-to-end latency per query. sub-figure (b): accuracy versus token cost per query. Syfer sits at the upper-right tip of the Pareto front in both panels. Removing any component consistently weakens Syfer, confirming that the gains come from the joint design. Among the components, cross-lingual MMR and faithfulness-controlled bilingual routing are especially important: without them, retrieval is more easily dominated by near-duplicate parallel passages or by unnecessary bilingual branches. There is an interesting observation, Always Bilingual, which confirms that more cross-lingual signal is not always better. This suggests that when a sub-question is already answerable in the target language, forcing an English-parallel branch injects extra reasoning noise and may even make the final answer drift into English, which is penalized by the language-conditioned EM/F1 metric. 5 Conclusion We present Syfer, a synthesizer-folding mRAG framework for multilingual multi-hop QA that gates bilingual fusion on a faithfulness check and folds aggregation into a terminal sub-question, making decomposition quality directly verifiable. On a unified nine-language testbed extended from three multi-hop QA benchmarks, Syfer outperforms structure-aware, translation-based, and decomposition-based baselines with a better qualityācost trade-off. 6 Acknowledgements This work was supported in part by the National Science Foundation of China (Nos. 62276056 and U24A20334), the Natural Science Foundation of Liaoning Province of China (2022-KF-26-01), the Fundamental Research Funds for the Central Universities (Nos. N2216016 and N2316002), the Yunnan Fundamental Research Projects (No. 202401BC070021), and the Program of Introducing Talents of Discipline to Universities, Plan 111 (No.B16009). References [1] J. Chen, S. Xiao, P. Zhang, K. Luo, D. Lian, and Z. Liu (2024) Bge m3-embedding: multi-lingual, multi-functionality, multi-granularity text embeddings through self-knowledge distillation. arXiv preprint arXiv:2402.03216 4 (5). Cited by: §4.4. [2] S. Chen, C. Zhou, Z. Yuan, Q. Zhang, Z. Cui, H. Chen, Y. Xiao, J. Cao, and X. Huang (2026) You donāt need pre-built graphs for rag: retrieval augmented generation with adaptive reasoning structures. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 40, p. 30270ā30278. Cited by: §1, §2.1. [3] N. Chirkova, D. Rau, H. DĆ©jean, T. Formal, S. Clinchant, and V. Nikoulina (2024) Retrieval-augmented generation in multilingual settings. In Proceedings of the 1st Workshop on Towards Knowledgeable Language Models (KnowLLM 2024), p. 177ā188. Cited by: §1, §2.2. [4] DeepSeek-AI (2026) DeepSeek-v4: towards highly efficient million-token context intelligence. Cited by: §4.4. [5] D. Edge, H. Trinh, N. Cheng, J. Bradley, A. Chao, A. Mody, S. Truitt, D. Metropolitansky, R. O. Ness, and J. Larson (2024) From local to global: a graph rag approach to query-focused summarization. arXiv preprint arXiv:2404.16130. Cited by: §2.1. [6] Y. Fan, B. Li, P. Li, Y. Wang, Y. Mu, J. Yang, X. Chen, R. Weng, J. Wang, X. Cai, et al. (2026) LANG: reinforcement learning for multilingual reasoning with language-adaptive hint guidance. In Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), p. 43838ā43866. Cited by: §1. [7] Y. Fan, Y. Mu, Y. Wang, L. Huang, J. Ruan, B. Li, T. Xiao, S. Huang, X. Feng, and J. Zhu (2025) SLAM: towards efficient multilingual reasoning via selective language alignment. In Proceedings of the 31st International Conference on Computational Linguistics, p. 9499ā9515. Cited by: §1. [8] B. J. GutiĆ©rrez, Y. Shu, W. Qi, S. Zhou, and Y. Su (2025) From rag to memory: non-parametric continual learning for large language models. arXiv preprint arXiv:2502.14802. Cited by: §2.1, §4.1, §4.2. [9] X. Ho, A. D. Nguyen, S. Sugawara, and A. Aizawa (2020) Constructing a multi-hop qa dataset for comprehensive evaluation of reasoning steps. In Proceedings of the 28th International Conference on Computational Linguistics, p. 6609ā6625. Cited by: §4.1. [10] K. Huang, F. Mo, X. Zhang, H. Li, Y. Li, Y. Zhang, W. Yi, Y. Mao, J. Liu, Y. Xu, et al. (2026) A survey on large language models with multilingualism: recent advances and new frontiers. Artificial Intelligence Review. Cited by: §1. [11] L. Huang, X. Feng, W. Ma, Y. Fan, X. Feng, Y. Gu, Y. Ye, L. Zhao, W. Zhong, B. Wang, et al. (2025) Alleviating hallucinations from knowledge misalignment in large language models via selective abstention learning. In Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), p. 24564ā24579. Cited by: §1. [12] L. Huang, X. Feng, W. Ma, Y. Fan, X. Feng, Y. Ye, W. Zhong, Y. Gu, B. Wang, D. Wu, et al. (2025) Improving contextual faithfulness of large language models via retrieval heads-induced optimization. arXiv preprint arXiv:2501.13573. Cited by: §1. [13] L. Huang, W. Yu, W. Ma, W. Zhong, Z. Feng, H. Wang, Q. Chen, W. Peng, X. Feng, B. Qin, et al. (2025) A survey on hallucination in large language models: principles, taxonomy, challenges, and open questions. ACM Transactions on Information Systems 43 (2), p. 1ā55. Cited by: §1. [14] P. Huang, Z. Liu, Y. Yan, H. Zhao, X. Yi, H. Chen, Z. Liu, M. Sun, T. Xiao, G. Yu, et al. (2026) Parammute: suppressing knowledge-critical ffns for faithful retrieval-augmented generation. Advances in Neural Information Processing Systems 38, p. 100378ā100410. Cited by: §2.1. [15] A. Hurst, A. Lerer, A. P. Goucher, A. Perelman, A. Ramesh, A. Clark, A. Ostrow, A. Welihinda, A. Hayes, A. Radford, et al. (2024) Gpt-4o system card. arXiv preprint arXiv:2410.21276. Cited by: §4.1. [16] P. Lewis, E. Perez, A. Piktus, F. Petroni, V. Karpukhin, N. Goyal, H. Küttler, M. Lewis, W. Yih, T. RocktƤschel, et al. (2020) Retrieval-augmented generation for knowledge-intensive nlp tasks. Advances in neural information processing systems 33, p. 9459ā9474. Cited by: §1. [17] N. F. Liu, K. Lin, J. Hewitt, A. Paranjape, M. Bevilacqua, F. Petroni, and P. Liang (2024) Lost in the middle: how language models use long contexts. Transactions of the association for computational linguistics 12, p. 157ā173. Cited by: §2.2. [18] J. Park and H. Lee (2025) Investigating language preference of multilingual rag systems. In Findings of the Association for Computational Linguistics: ACL 2025, p. 5647ā5675. Cited by: §1, §2.2. [19] J. Qi, R. FernĆ”ndez, and A. Bisazza (2025) On the consistency of multilingual context utilization in retrieval-augmented generation. In Proceedings of the 5th Workshop on Multilingual Representation Learning (MRL 2025), p. 199ā225. Cited by: §1, §2.2. [20] L. Ranaldi, F. Ranaldi, F. M. Zanzotto, B. Haddow, and A. Birch (2025) Improving multilingual retrieval-augmented language models through dialectic reasoning argumentations. In Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing, p. 9075ā9096. Cited by: §1, §2.2. [21] L. Ranaldi (2026) Multilingual retrieval-augmented generation for knowledge-intensive question answering task. In Findings of the Association for Computational Linguistics: EACL 2026, p. 697ā716. Cited by: §1, §2.2, §4.2. [22] Z. Shao, Y. Gong, Y. Shen, M. Huang, N. Duan, and W. Chen (2023) Enhancing retrieval-augmented large language models with iterative retrieval-generation synergy. In Findings of the Association for Computational Linguistics: EMNLP 2023, p. 9248ā9274. Cited by: §2.1. [23] H. Trivedi, N. Balasubramanian, T. Khot, and A. Sabharwal (2022) MuSiQue: multihop questions via single-hop question composition. Transactions of the Association for Computational Linguistics 10, p. 539ā554. Cited by: §4.1, §4.3. [24] H. Trivedi, N. Balasubramanian, T. Khot, and A. Sabharwal (2023) Interleaving retrieval with chain-of-thought reasoning for knowledge-intensive multi-step questions. In Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: long papers), p. 10014ā10037. Cited by: §2.1. [25] Y. Wang, Y. Fan, J. Li, Z. Zhu, Y. Mu, Q. He, T. Xiao, and J. Zhu (2026) DaPT: a dual-path framework for multilingual multi-hop question answering. In ICASSP 2026-2026 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), p. 19302ā19306. Cited by: §1, §1, §2.2, §4.2. [26] Z. Wei, X. Yang, Y. Wang, Z. Wang, W. Bao, S. Feng, D. Wang, and Y. Zhang (2026) CIRAG: construction-integration retrieval and adaptive generation for multi-hop question answering. arXiv preprint arXiv:2601.06799. Cited by: §2.1. [27] Y. Xiao, C. Zhou, Y. Zhang, Q. Zhang, S. Dong, S. Chen, C. Yang, and X. Huang (2025) Lag: logic-augmented generation from a cartesian perspective. arXiv preprint arXiv:2508.05509. Cited by: §1, §2.1. [28] A. Yang, A. Li, B. Yang, B. Zhang, B. Hui, B. Zheng, B. Yu, C. Gao, C. Huang, C. Lv, et al. (2025) Qwen3 technical report. arXiv preprint arXiv:2505.09388. Cited by: §4.4. [29] Z. Yang, P. Qi, S. Zhang, Y. Bengio, W. Cohen, R. Salakhutdinov, and C. D. Manning (2018) HotpotQA: a dataset for diverse, explainable multi-hop question answering. In Proceedings of the 2018 conference on empirical methods in natural language processing, p. 2369ā2380. Cited by: §4.1. [30] X. Zhang, Y. Liang, F. Meng, S. Zhang, Y. Chen, J. Xu, and J. Zhou (2025) Multilingual knowledge editing with language-agnostic factual neurons. In Proceedings of the 31st International Conference on Computational Linguistics, p. 5775ā5788. Cited by: §1, §2.2.