REVIEW 4 major objections 5 minor 37 references
A Method for Multi-Hop Question Answering on Persian Knowledge Graph
T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read This paper claims that a decompose-then-execute pipeline for Persian multi-hop questions raises F1 to 75.55% and accuracy to 74.81% on the PeCoQ benchmark, beating the only prior Persian KGQA system by 12.57 and 12.06 points.
desk verdict Useful first Persian question-decomposition dataset, but the 12.57 F1 headline needs a clean test-split disclosure before I'd trust it. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the Meaning Representation of Decomposed Complex Persian Question (MRDCPQ), a numbered list of short semantic units in which a complex question is rewritten as a sequence of entity and relation steps with back-references such as '#1' and '#2'. The paper's architecture has four components: a multilingual text-to-text decomposer fine-tuned on the 5,600-question MRDCPQ dataset, a Persian transformer named-entity recognizer and zero-shot entity linker that maps entities to FarsBase, a multilingual text-to-text unit-to-SPARQL generator, and an executor that chains the generated queries so the object of one hop becomes the subject of the next. The MRDCPQ representation is what makes sequential execution possible: it turns multi-hop reasoning into a fixed executable order rather than a single monolithic query.
What would settle it
Replace the predicted decompositions on the PeCoQ test set with the gold decompositions from MRDCPQ and rerun the rest of the pipeline unchanged. If the F1 score stays near 75.55%, decomposition errors are not the binding constraint; if it rises substantially, the claimed end-to-end gain depends on the 77.61%-accurate decomposer and would shrink for questions the decomposer gets wrong.
Extended reading notes
Core claim
Stated on the paper's own terms, the discovery is that the bottleneck in Persian KGQA is the transformation of multi-hop questions into a semantically equivalent SPARQL query, and that this transformation becomes tractable when the question is first rewritten as a chain of meaning units. Each unit is either an entity or a relation, and later units refer back to earlier ones with numbered markers, so the chain is executable: the answer of one unit feeds the next. Trained on the MRDCPQ dataset, the decomposition model reaches 77.61% task-decomposition accuracy, the entity recognizer reaches 99.16% accuracy, and the unit-to-SPARQL generator reaches 82.35% F1; end-to-end, the system outperforms the only prior Persian KGQA approach on precision (84.36% vs 71.24%), recall (68.41% vs 56.45%), F1 (75.55% vs 62.98%), and accuracy (74.81% vs 62.75%).
Load-bearing premise
The load-bearing premise is that the model's decomposition of a complex Persian question is semantically equivalent to the original question, so executing the decomposed steps in sequence returns the same answer as one correct SPARQL query; the paper's own 77.61% decomposition accuracy shows this equivalence fails on a nontrivial fraction of questions.
Editorial extensions
If this is right
- Any Persian KGQA system can treat question decomposition as a separate trainable component, because MRDCPQ provides the first benchmark for it.
- Because the units are human-readable, the system's reasoning path is inspectable: a wrong answer can be traced to the exact hop that produced it.
- The per-component results suggest the NER and entity-linking stages are near-saturated for this benchmark, so future gains on PeCoQ will likely come from decomposition and SPARQL generation.
- The same decompose-then-execute pipeline could be applied to other low-resource languages with a multilingual transformer, provided a knowledge graph and an entity-linking resource exist.
Reading between the lines
- The 77.61% decomposition accuracy is probably the effective ceiling on end-to-end accuracy: if a step drops or reorders a relation, every downstream hop inherits the error, so improving decomposition is the highest-leverage intervention even though the paper does not report this ablation.
- Ablating the system with oracle decompositions from MRDCPQ would separate the contribution of the decomposer from the contributions of entity linking and SPARQL generation; the paper does not report this experiment.
- The 12.57-point F1 gap is measured against a single prior system; LLM-based KGQA methods, which the paper reviews for English, have not yet been evaluated on Persian PeCoQ and would be a natural next comparison.
- The MRDCPQ format mirrors the BREAK-style question-understanding benchmark, so the decomposition dataset could support other Persian tasks such as semantic parsing and explainable QA, not only KGQA.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a four-component pipeline for answering multi-hop complex Persian questions over the FarsBase knowledge graph: (1) decomposition of the question into BREAK-style semantic segments using a fine-tuned mT5 model, (2) named entity recognition with ParsBERT and zero-shot entity linking to FarsBase, (3) generation of one SPARQL query per segment using a fine-tuned mT5 model, and (4) sequential execution of these queries to compose the final answer. The authors introduce MRDCPQ, a dataset of 5,600 Persian multi-hop questions with semantic decompositions, derived from the PeCoQ dataset. Component-level results include task decomposition accuracy of 77.61%, NER accuracy of 99.16%, and SPARQL generation F1 of 82.35%. The main empirical claim, reported in Section 4.4, is that the full pipeline outperforms the only prior Persian KGQA system of Etezadi et al. on the PeCoQ test set by 12.57% F1 and 12.06% accuracy.
Significance. If the empirical claims are validated, this is a useful contribution to Persian KGQA: it provides the first Persian dataset for semantic question decomposition, demonstrates that a decomposition-based pipeline can exceed the previous state of the art on PeCoQ, and reports per-component results that are informative for future work. The strengths are the creation of MRDCPQ, the use of a standard BREAK-style decomposition formalism, and the explicit evaluation of decomposition, NER, and SPARQL generation as separate stages. However, the significance is currently limited by evaluation weaknesses and unresolved data-provenance questions that could affect the validity of the headline improvement.
major comments (4)
- [§3.1.1, §4.4, Table 4] The central claim of a 12.57% F1 improvement on the PeCoQ test set is not supported without a clear statement that the PeCoQ test examples are disjoint from the MRDCPQ training split. MRDCPQ is built 'based on the PeCoQ dataset' and split 80/10/10 for training, testing, and validation, while Table 4 reports results 'on the test dataset of PeCoQ.' The paper never specifies whether the PeCoQ test questions used in Table 4 are the same as, overlapping with, or disjoint from the MRDCPQ training set. It also does not state whether Table 4 is computed on all PeCoQ test questions or only on the 5,600 'correctly decomposed' questions. This is load-bearing for the headline result, and the inconsistency that 'approximately 15,000 multi-hop complex questions were extracted from PeCoQ' despite PeCoQ being described as containing 10,000 questions makes the curation step underspecified.
- [§4.4, Table 4] The end-to-end evaluation uses a single baseline, reports no variance or significance tests, and gives no details about the number of test questions or the exact evaluation protocol. With a 12.57 F1-point difference over one comparator, the result could be meaningful, but the absence of standard deviations over multiple fine-tuning seeds, confidence intervals, or a significance test makes it impossible to assess whether the gap is robust. The paper should report results over multiple runs with statistical testing, and should also report end-to-end accuracy conditioned on whether the decomposition was correct, since the decomposition TDA is only 77.61% and error propagation is a stated risk of the sequential execution architecture.
- [§3.1, §3.4, §4.1] The method assumes that the semantic decomposition produced in Section 3.1 is exactly semantically equivalent to the original complex question, so that sequential execution of the per-step SPARQL queries yields the same answer as a single correct query. This assumption is never verified. The TDA metric is described qualitatively, with no formula or exact matching definition, and the paper does not report how decomposition failures affect downstream entity linking, SPARQL generation, and final answer accuracy. Since 77.61% TDA means a nontrivial fraction of test decompositions are incorrect, the paper needs an error analysis tracing those failures to end-to-end answers, and ideally a comparison against a non-decomposition baseline on the same test set.
- [§3.2, §4.4] The entity linking component is a critical part of the pipeline, yet no quantitative evaluation of entity linking accuracy is provided. Section 3.2 claims that the proposed NER method outperforms existing Persian tools, and Figure 6 describes a zero-shot linking process, but Table 3 only reports NER accuracy and the final system evaluation does not isolate linking errors. Linking errors will propagate directly into SPARQL generation and final answers, so the paper should report entity linking accuracy on the MRDCPQ test set and, if possible, an ablation that shows the contribution of the linking step to the end-to-end F1.
minor comments (5)
- [§3.1.1] The dataset description states that 'approximately 15,000 multi-hop complex questions were extracted from PeCoQ,' but the same paper describes PeCoQ as containing 10,000 questions. This inconsistency should be resolved and the exact filtering rules for the 5,600 selected questions should be stated.
- [§3, References] Reference [25] is cited as FarsBase in Section 3.1.1, but [25] is the Freebase paper; FarsBase is correctly cited as [31] and [32] elsewhere. The incorrect citation should be fixed.
- [§3.2, Figure 6] The text in Section 3.2 describes entity linking using cosine similarity, while Figure 6 mentions a cross-encoder and a ranking step. These are two different procedures; the paper should describe one consistent linking method and explain what is actually implemented.
- [§4.4, Table 4] Table 4 lacks information about the number of test questions, whether the same questions were used for both methods, and whether the reported numbers are averages over runs. Adding this information would make the comparison interpretable.
- [Throughout] The English language needs another round of editing: examples include 'Figures 8 demonstrates' in Section 3.4, and several Persian-to-English translations such as 'جهانن' and 'کد منطقهای' appear inconsistent with the English glosses. Typos and grammatical errors do not affect the technical content but should be corrected.
Circularity Check
No circular derivation: the reported F1 and accuracy gains are the outcome of held-out evaluation on PeCoQ and are not constructed from the training labels.
full rationale
The paper's claimed derivation chain is empirical, not definitional. The decomposer (mT5, §3.1.2), the NER/linker (ParsBERT plus zero-shot dense retrieval, §3.2), and the SPARQL generator (mT5, §3.3) are all fine-tuned on MRDCPQ and then measured with standard metrics on the PeCoQ test dataset (§4.1–§4.4, Table 4). None of the reported numbers, including the headline 12.57% F1 and 12.06% accuracy improvements, is obtained by substituting a fitted parameter back into the same equation that defined it; the comparison against Etezadi et al. is an external evaluation on a separate system's dataset. There is no self-citation chain that supplies the core claim, no uniqueness theorem imported from the authors' prior work, and no ansatz concealed in a citation. The main legitimate concern is data provenance rather than circularity: MRDCPQ is built 'based on the PeCoQ dataset' (§3.1.1), and the paper does not state whether the PeCoQ test questions used in Table 4 are disjoint from the 80% MRDCPQ training split. That omission is a potential leakage/external-validity risk, but the paper provides no quoted mapping that would let one exhibit a specific reduction of the prediction to the training input, so it does not meet the standard for a circularity finding under the stated rules. Accordingly, the appropriate circularity score is 0.
Assumptions & free parameters
free parameters (2)
- Trained weights of mT5 and ParsBERT models =
Not reported or released
- Entity linking candidate count k =
5
assumptions (5)
- domain assumption PeCoQ questions, SPARQL queries, named entities, and relations are correctly annotated.
- ad hoc to paper A BREAK-style semantic decomposition preserves the answer semantics of the original complex question.
- domain assumption FarsBase has sufficient coverage for all entities and relations used in PeCoQ questions.
- domain assumption Etezadi et al.'s reported metrics are computed on the same PeCoQ test split with the same evaluation normalization.
- ad hoc to paper The curated 5,600-question subset is representative of the full PeCoQ distribution.
Cite this review
Pith. "Pith review of A Method for Multi-Hop Question Answering on Persian Knowledge Graph." pith.science (2026). https://pith.science/paper/5GK7F7CL
@misc{pith2026250116350,
author = {Pith},
title = {Pith review of: A Method for Multi-Hop Question Answering on Persian Knowledge Graph},
year = {2026},
howpublished = {\url{https://pith.science/paper/5GK7F7CL}},
note = {Machine review of arXiv:2501.16350}
}
read the original abstract
Question answering systems are the latest evolution in information retrieval technology, designed to accept complex queries in natural language and provide accurate answers using both unstructured and structured knowledge sources. Knowledge Graph Question Answering (KGQA) systems fulfill users' information needs by utilizing structured data, representing a vast number of facts as a graph. However, despite significant advancements, major challenges persist in answering multi-hop complex questions, particularly in Persian. One of the main challenges is the accurate understanding and transformation of these multi-hop complex questions into semantically equivalent SPARQL queries, which allows for precise answer retrieval from knowledge graphs. In this study, to address this issue, a dataset of 5,600 Persian multi-hop complex questions was developed, along with their decomposed forms based on the semantic representation of the questions. Following this, Persian language models were trained using this dataset, and an architecture was proposed for answering complex questions using a Persian knowledge graph. Finally, the proposed method was evaluated against similar systems on the PeCoQ dataset. The results demonstrated the superiority of our approach, with an improvement of 12.57% in F1-score and 12.06% in accuracy compared to the best comparable method.
Figures
Reference graph
Works this paper leans on
-
[1]
Faceted search over RDF -based knowledge graphs,
M. Arenas, B. Cuenca Grau, E. Kharlamov, Š. Marciuška, and D. Zheleznyakov, “Faceted search over RDF -based knowledge graphs,” J. Web Semant., vol. 37–38, pp. 55–74, Mar. 2016, doi: 10.1016/J.WEBSEM.2015.12.002
-
[2]
J. Wang, W. Li, F. Liu, B. Sheng, W. Liu, and Q. Jin, “Hic -KGQA: Improving multi -hop question answering over knowledge graph via hypergraph and inference chain,” Knowledge-Based Syst. , vol. 277, p. 110810, 2023, doi: https://doi.org/10.1016/j.knosys.2023.110810
-
[7]
Semantic parsing on freebase from question -answer pairs,
J. Berant, A. Chou, R. Frostig, and P. Liang, “Semantic parsing on freebase from question -answer pairs,” in EMNLP 2013 - 2013 Conference on Empirical Methods in Natural Language Processing, Proceedings of the Conference , Association for Computational Linguistics, 2013, pp. 1533–1544. [Online]. Available: http://nlp.stanford.edu/
work page 2013
-
[8]
More accurate question answering on freebase,
H. Bast and E. Haussmann, “More accurate question answering on freebase,” Int. Conf. Inf. Knowl. Manag. Proc. , vol. 19- 23-Oct-2015, pp. 1431–1440, Oct. 2015, doi: 10.1145/2806416.2806472
-
[9]
A Survey on Complex Knowledge Base Question Answering: Methods, Challenges and Solutions,
Y. Lan, G. He, J. Jiang, J. Jiang, W. X. Zhao, and J.-R. Wen, “A Survey on Complex Knowledge Base Question Answering: Methods, Challenges and Solutions,” in Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence, California: International Joint Conferences on Artificial Intelligence Organization, Aug. 2021, pp. 4483 –4491. ...
-
[10]
Case-based Reasoning for Natural Language Queries over Knowledge Bases
R. Das et al. , “Case-based Reasoning for Natural Language Queries over Knowledge Bases.” 2021. [Online]. Available: https://arxiv.org/abs/2104.08762
arXiv 2021
-
[11]
{RNG} -{KBQA}: Generation Augmented Iterative Ranking for Knowledge Base Question Answering,
X. Ye, S. Yavuz, K. Hashimoto, Y. Zhou, and C. Xiong, “{RNG} -{KBQA}: Generation Augmented Iterative Ranking for Knowledge Base Question Answering,” in Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , S. Muresan, P. Nakov, and A. Villavicencio, Eds., Dublin, Ireland: Association for Computat...
-
[12]
{TIARA}: Multi -grained Retrieval for Robust Question Answering over Large Knowledge Base,
Y. Shu et al. , “{TIARA}: Multi -grained Retrieval for Robust Question Answering over Large Knowledge Base,” in Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing , Y. Goldberg, Z. Kozareva, and Y. Zhang, Eds., Abu Dhabi, United Arab Emirates: Association for Computational Linguistics, Dec. 2022, pp. 8108 –
work page 2022
Show all 37 references
-
[13]
DecAF: Joint Decoding of Answers and Logical Forms for Question Answering over Knowledge Bases
D. Yu et al. , “DecAF: Joint Decoding of Answers and Logical Forms for Question Answering over Knowledge Bases.”
-
[14]
Program Transfer for Answering Complex Questions over Knowledge Bases
S. Cao et al. , “Program Transfer for Answering Complex Questions over Knowledge Bases.” 2022. [Online]. Available: https://arxiv.org/abs/2110.05743
2022 arXiv
-
[15]
A Survey on Complex Question Answering over Knowledge Base: Recent Advances and Challenges,
B. Fu, Y. Qiu, C. Tang, Y. Li, H. Yu, and J. Sun, “A Survey on Complex Question Answering over Knowledge Base: Recent Advances and Challenges,” no. 1, pp. 1–19, 2020, [Online]. Available: http://arxiv.org/abs/2007.13069
2020 arXiv
-
[16]
Enhancing Complex Question Answering over Knowledge Graphs through Evidence Pattern Retrieval
W. Ding, J. Li, L. Luo, and Y. Qu, “Enhancing Complex Question Answering over Knowledge Graphs through Evidence Pattern Retrieval.” 2024. [Online]. Available: https://arxiv.org/abs/2402.02175
2024 arXiv
-
[17]
Improving Multi -hop Question Answering over Knowledge Graphs using Knowledge Base Embeddings,
A. Saxena, A. Tripathi, and P. Talukdar, “Improving Multi -hop Question Answering over Knowledge Graphs using Knowledge Base Embeddings,” Proc. 58th Annu. Meet. Assoc. Comput. Linguist. , pp. 4498 –4507, 2020, doi: 10.18653/v1/2020.acl-main.412
2020 doi
-
[18]
Improving Multi -hop Knowledge Base Question Answering by Learning Intermediate Supervision Signals,
G. He, Y. Lan, J. Jiang, W. X. Zhao, and J. R. Wen, “Improving Multi -hop Knowledge Base Question Answering by Learning Intermediate Supervision Signals,” in WSDM 2021 - Proceedings of the 14th ACM International Conference on Web Search and Data Mining, 2021, pp. 553–561. doi:...
2021
-
[19]
Subgraph Retrieval Enhanced Model for Multi -hop Knowledge Base Question Answering,
J. Zhang et al., “Subgraph Retrieval Enhanced Model for Multi -hop Knowledge Base Question Answering,” in Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , Association for Computational Linguistics, 2022. doi: 10....
2022 doi
-
[20]
UniKGQA: Unified Retrieval and Reasoning for Solving Multi -hop Question Answering Over Knowledge Graph
J. Jiang, K. Zhou, W. X. Zhao, and J. -R. Wen, “UniKGQA: Unified Retrieval and Reasoning for Solving Multi -hop Question Answering Over Knowledge Graph.” 2023. [Online]. Available: https://arxiv.org/abs/2212.00959
2023 arXiv
-
[21]
Multi -hop Question Answering over Knowledge Graphs using Large Language Models
A. Chakraborty, “Multi -hop Question Answering over Knowledge Graphs using Large Language Models.” 2024. [Online]. Available: https://arxiv.org/abs/2404.19234
2024 arXiv
-
[22]
Knowledge Graph -augmented Language Models for Complex Question Answering,
P. Sen, S. Mavadia, and A. Saffari, “Knowledge Graph -augmented Language Models for Complex Question Answering,” in Proceedings of the 1st Workshop on Natural Language Reasoning and Structured Explanations (NLRSE) , B. Dalvi Mishra, G. Durrett, P. Jansen, D. Neves Ribeiro, and...
2023 doi
-
[23]
A Knowledge -based Approach for Answering Complex Questions in Persian
R. Etezadi and M. Shamsfard, “A Knowledge -based Approach for Answering Complex Questions in Persian.” 2021. [Online]. Available: https://arxiv.org/abs/2107.02040
2021 arXiv
-
[24]
Wikidata: A Free Collaborative Knowledgebase,
D. Vrandečić and M. Krötzsch, “Wikidata: A Free Collaborative Knowledgebase,” Commun. ACM, vol. 57, no. 10, pp. 78 – 85, Sep. 2014, doi: 10.1145/2629489
2014 doi
-
[25]
Freebase: A collaboratively created graph da tabase for structuring human knowledge,
K. Bollacker, C. Evans, P. Paritosh, T. Sturge, and J. Taylor, “Freebase: A collaboratively created graph da tabase for structuring human knowledge,” Proc. ACM SIGMOD Int. Conf. Manag. Data , pp. 1247 –1249, 2008, doi: 10.1145/1376616.1376746
2008
-
[26]
Yago: A core of semantic knowledge,
F. M. Suchanek, G. Kasneci, and G. Weikum, “Yago: A core of semantic knowledge,” 16th Int. World Wide Web Conf. WWW2007, pp. 697–706, 2007, doi: 10.1145/1242572.1242667
2007
-
[27]
DBpedia: A nucleus for a Web of open data,
S. Auer, C. Bizer, G. Kobilarov, J. Lehmann, R. Cyganiak, and Z. Ives, “DBpedia: A nucleus for a Web of open data,” Lect. Notes Comput. Sci. (including Subser. Lect. Notes Artif. Intell. Lect. Notes Bioinformatics) , vol. 4825 LNCS, pp. 722 –735, 2007, doi: 10.1007/978-3-540-7...
2007 doi
-
[28]
Large -scale Simple Question Answering with Memory Networks,
A. Bordes, N. Usunier, S. Chopra, and J. Weston, “Large -scale Simple Question Answering with Memory Networks,” Jun. 2015, [Online]. Available: http://arxiv.org/abs/1506.02075
2015 arXiv
-
[29]
Building event-centric knowledge graphs from news,
M. Rospocher et al., “Building event-centric knowledge graphs from news,” J. Web Semant., vol. 37–38, pp. 132–151, Mar. 2016, doi: 10.1016/j.websem.2015.12.004
2016 doi
-
[30]
Towards a definition of knowledge graphs,
L. Ehrlinger and W. Wöß, “Towards a definition of knowledge graphs,” CEUR Workshop Proceedings, vol. 1695. pp. 1--4,- -1--4, 2016
2016
-
[31]
FarsBase: A cross -domain farsi knowledge graph,
M. B. Sajadi, B. M. Bidgoli, and A. Hadian, “FarsBase: A cross -domain farsi knowledge graph,” CEUR Workshop Proc. , vol. 2198, pp. 4–7, 2018
2018
-
[32]
FarsBase: The Persian knowledge graph,
M. Asgari-Bidhendi, A. Hadian, and B. Minaei -Bidgoli, “FarsBase: The Persian knowledge graph,” Semant. Web, vol. 10, no. 6, pp. 1169–1196, 2019, doi: 10.3233/SW-190369
2019 doi
-
[33]
A survey of RDF storage approaches,
D. C. Faye, O. Curé, and G. Blin, “A survey of RDF storage approaches,” Rev. Africaine la Rech. en Inform. Mathématiques Appliquées, vol. Volume 15, Sep. 2012, doi: 10.46298/ARIMA.1956
2012 doi
-
[34]
PeCoQ: A Dataset for Persian Complex Question Answering over Knowledge Graph,
R. Etezadi and M. Shamsfard, “PeCoQ: A Dataset for Persian Complex Question Answering over Knowledge Graph,” in 2020 11th International Conference on Information and Knowledge Technology (IKT) , IEEE, Dec. 2020, pp. 102 –106. doi: 10.1109/IKT51791.2020.9345610
2020
-
[35]
Break it down: A question understanding benchmark,
T. Wolfson et al., “Break it down: A question understanding benchmark,” Trans. Assoc. Comput. Linguist., vol. 8, pp. 183– 198, 2020, doi: 10.1162/TACL_A_00309/1923705/TACL_A_00309.PDF
2020 doi
-
[36]
Break it down: A question understanding benchmark,
T. Wolfson et al., “Break it down: A question understanding benchmark,” Trans. Assoc. Comput. Linguist., vol. 8, pp. 183– 198, Jan. 2020, doi: 10.1162/tacl_a_00309
2020 doi
- [37]
-
[38]
ParsBERT: Transformer -based model for Persian language understanding,
M. Farahani, M. Gharachorloo, M. Farahani, and M. Manthouri, “ParsBERT: Transformer -based model for Persian language understanding,” arXiv. arXiv, May 2020. [Online]. Available: http://arxiv.org/abs/2005.12515
2020 arXiv
-
[39]
Scalable Zero -shot Entity Linking with Dense Entity Retrieval
L. Wu, F. Petroni, M. Josifoski, S. Riedel, and L. Zettlemoyer, “Scalable Zero -shot Entity Linking with Dense Entity Retrieval.” 2020. [Online]. Available: https://arxiv.org/abs/1911.03814 Authors’ Profiles Arash Ghafouri: He is a PhD candidate in Computer Engineering at the ...
2020 arXiv
-
[2023]
Available: https://arxiv.org/abs/2210.00063
[Online]. Available: https://arxiv.org/abs/2210.00063
-
[8121]
doi: 10.18653/v1/2022.emnlp-main.555
2022 doi
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.