Pith. sign in

REVIEW 3 major objections 5 minor 2 cited by

LaRA: Benchmarking Retrieval-Augmented Generation and Long-Context LLMs -- No Silver Bullet for LC or RAG Routing

T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read LaRA, a 2,326-case benchmark, shows that neither RAG nor long-context prompting wins universally; the right choice depends on model, context length, and task.

desk verdict A genuinely reusable benchmark for RAG-vs-LC comparisons, with qualitative conclusions that hold up but quantitative claims that need error bars and a wider judge validation. read the letter →

arxiv 2502.09977 v2 pith:Q73HBJG2 submitted 2025-02-14 cs.CL cs.AI

classification cs.CLcs.AI
keywords retrieval-augmentedgenerationlong-contextlanguagemodelsLLMbenchmarkquestionansweringevaluationhallucinationdetectioncontext-lengthscalinglost-in-the-middle
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper sets out to settle a disagreement in the literature over whether retrieval-augmented generation (RAG) is still needed now that LLMs can accept very long contexts. It builds LaRA, a benchmark of 2,326 question-answer pairs on naturally occurring long documents (novels, academic papers, financial statements) at 32k and 128k token lengths, covering four practical task types: locating information, reasoning, comparison, and hallucination detection. Evaluating eleven LLMs, the paper's central claim is that neither RAG nor long-context (LC) input wins universally; instead the winning strategy shifts with model strength, context length, task type, and retrieval chunk settings. If correct, this gives practitioners an actionable routing guide rather than a one-size-fits-all answer.

What carries the argument

LaRA is the central object: a benchmark of 2,326 test cases assembled from three naturally occurring long-text genres (novels, arXiv papers, and U.S. financial statements) at 32k and 128k token contexts, with four task categories (location, reasoning, comparison, hallucination detection). The benchmark is engineered to remove the confounds the authors identify in earlier comparisons: contexts are long enough to stress current models, entities in novels are replaced to block training-data leakage, and questions are constructed to be answerable only from the given context. The analysis then leans on a summary statistic, the Average GAP (LC accuracy minus RAG accuracy averaged over all models per task), to identify where each method wins.

What would settle it

Re-score LaRA predictions with human annotators (or an independently calibrated judge) on a full pass over all 2,326 test cases, including RAG outputs, and compare the task-level and context-length-level gaps. If comparison no longer favors LC, or hallucination detection no longer favors RAG, or the 128k reversal for open-source models disappears, the paper's routing conclusions would be falsified.

Watch

Extended reading notes

Core claim

On LaRA, the paper finds that the RAG-versus-LC question has no universal answer. At 32k context length, full-context input (LC) holds a small overall edge—an average 2.4 percentage points over RAG across all models—but at 128k the pattern reverses, with RAG ahead by 3.68 points on average. Task type matters more: comparison questions show the largest LC advantage (average gap of 15.22 points at 32k and 14.30 points at 128k), while hallucination detection shows the largest RAG advantage (average gap of -10.38 points at 32k and -22.36 points at 128k, where negative means RAG wins). Stronger proprietary models generally favor LC, while RAG lifts weaker open-source models, at 128k sometimes by large margins (e.g., 38.12 points for Mistral-Nemo-12B). RAG also resists the 'lost in the middle' degradation that LC models show when the answer sits near the center of the context. The authors present these patterns as guidelines for routing each query to RAG or LC based on the model, context, and task.

Load-bearing premise

The load-bearing premise is that GPT-4o, which generated the benchmark questions and judged every answer, scores RAG and LC outputs equally fairly for all eleven models; the human-agreement check covered only two models in the full-context mode, not RAG outputs or the other nine models.

Editorial extensions

If this is right

  • Practitioners can route by task: choose RAG for hallucination detection and LC for comparison and reasoning, especially on strong models.
  • At context lengths near a model's limit (128k), RAG is the safer default for open-source and smaller models; LC remains preferable for proprietary frontier models.
  • RAG's immunity to 'lost in the middle' means that if an answer's location is unknown or likely mid-document, retrieval beats full-context feeding.
  • Retrieval settings should be tuned by model size: increasing the number of chunks helps large models, while small models peak at an intermediate chunk count; both extremes of chunk size hurt.
  • Benchmark comparisons should report per-task and per-context-length results; aggregate-only accuracy can hide opposite conclusions.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural extension the paper leaves implicit is a cost-aware router: since RAG feeds only retrieved chunks, matching accuracy can come at a fraction of LC's token cost, especially at 128k contexts; this would strengthen the routing recommendation.
  • Because GPT-4o generated the questions and graded all answers, a testable re-scoring experiment with independent human judges or a second judge model on RAG outputs could verify that the task-level gaps persist.
  • The correlation between model strength and RAG benefit suggests a possible predictive proxy: a model's effective-context utilization (e.g., its 'lost in the middle' curve) might predict how much retrieval will help, which the paper does not directly test.
  • The chunk-quantity findings were obtained with one retrieval pipeline (hybrid BM25 and dense embeddings); testing whether the small-model peak moves with retriever quality is a concrete next experiment.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper introduces LaRA, a benchmark of 2,326 question-answering test cases across four task types (location, reasoning, comparison, hallucination detection) and three types of naturally occurring long contexts (novels, financial statements, academic papers), with contexts near 32k and 128k tokens. The authors compare retrieval-augmented generation (RAG) against long-context (LC) prompting across eleven LLMs, measuring accuracy with a GPT-4o judge and reporting task-level average gaps (LC minus RAG). The main conclusion is that no single method wins universally: the optimal RAG/LC choice depends on model size, context length, task type, and retrieval chunking, with LC favored for comparison and reasoning and RAG favored for hallucination detection and for weaker models at long contexts.

Significance. If the empirical findings hold, LaRA would be a useful and timely benchmark for the RAG-versus-LC question, filling a gap left by prior benchmarks that used short or truncated contexts, suffered from data leakage, or lacked realistic task variety. The construction effort is notable: recent contexts, entity replacement for novels, human validation of generated QA pairs, and Cohen's Kappa checks for the judge. The paper also ships code and data, which supports reproducibility. The central claim that routing should be context-dependent rather than a one-size-fits-all choice is plausible and actionable for practitioners.

major comments (3)
  1. [Appendix C, Table 4; Section 3.4] The GPT-4o judge is the single source of all accuracy numbers in Table 2, but its validation in Appendix C covers only 100 predictions per task from two LC conditions—GPT-4o (LC) and Qwen-2.5-7B (LC) at 128k context. The paper states that GPT-4o evaluation is consistent 'whether applied to large or small models,' but the evidence does not extend to RAG outputs, 32k contexts, or the other nine models. If the judge treats RAG's shorter 'not mentioned' refusals differently from LC's longer free-form answers, or is biased toward GPT-4o's own generation style, every Avg GAP in Table 2 and every per-model routing recommendation could shift. Please extend the human validation to a stratified sample covering RAG outputs, both context lengths, and all model families, and report per-condition Cohen's Kappa. A sensitivity check with a second independent judge would also strengthen the claim.
  2. [Table 2 and Table 3] The main results are reported without confidence intervals or significance tests. Several load-bearing gaps are very small: the location-task Avg GAP at 32k is 0.08 percentage points, and Llama-3.1-8B-Instruct's location accuracy at 128k is 72.64 (LC) versus 72.65 (RAG). Given that the per-task sample sizes are 151–489 cases (Table 3), such differences are well within sampling noise. The paper's broader claims—for example, that 'RAG empowers models to handle extremely long context' and that context-length trends reverse—need quantitative support in the form of bootstrap confidence intervals or significance tests on the Avg GAP values and on the individual model-level differences. Without this, the routing guidelines in the abstract are not statistically grounded.
  3. [Sections 3.3 and 3.4] There is a concrete same-family evaluation bias risk: GPT-4o generated the QA pairs (including ground-truth answers) and GPT-4o judges all model predictions. The high human Kappa shows that the judge agrees with human judgments on a sample, but it does not rule out a bias toward GPT-4o's own answer style, because the human validation was performed on only two LC conditions. Overrepresentation of GPT-4o-like phrasing in the ground-truth answers could make GPT-4o's outputs easier for the judge to recognize as correct, while penalizing other models' paraphrases. Please report a sensitivity analysis using an alternative judge (e.g., an open-weight LLM with comparable human alignment) or human evaluations on a covered subset, and verify that the Avg GAP signs and the per-model ranking of RAG versus LC remain stable under the alternative judge.
minor comments (5)
  1. [Throughout] There are numerous typos and grammatical issues, e.g., 'Introducion' in the section heading, 'Desipte' and 'lanuage' in Section 2, and 'a lot of benchmarks has been used' in Section 2. A thorough proofread is needed.
  2. [Section 4.2] The text refers to 'Mistral-Nemo-13B' while the rest of the paper and Table 2 use 'Mistral-Nemo-12B'; please use the correct model size consistently.
  3. [Section 4.2] The claim that 'the inherent self-attention mechanism in these models appears more effective at handling extended contexts compared to the sparse attention employed in RAG' is speculative; the paper does not measure attention sparsity or provide a mechanistic analysis. Please rephrase as a hypothesis or provide supporting evidence.
  4. [Table 2] The table caption states that Avg GAP is 'calculated as LC minus RAG,' but the sign conventions (blue/red text) are not explained in the caption itself; please clarify in the caption that negative values favor RAG and positive values favor LC.
  5. [Section 4.5, Figure 2] The chunk-size axis uses non-uniform spacing (200, 400, 600, 800, 1000, 2000), which makes the plotted curves visually misleading; please use a linear or logarithmic axis that matches the scale.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: LaRA is an empirical benchmark comparison; the GPT-4o-as-judge overlap is an evaluation-validity concern, not a circular reduction.

full rationale

This paper contains no mathematical derivation chain whose outputs reduce to its inputs. The central claims about RAG versus LC routing are empirical measurements from Table 2 and subsequent analyses. No fitted parameter is renamed as a prediction, no ansatz is smuggled in via citation, and no uniqueness theorem is imported from the authors' prior work. The closest issue is that GPT-4o generates the QA pairs (Section 3.3) and also judges correctness (Section 3.4), which could create a same-family evaluation bias; however, the paper validates the judge against human labels using Cohen's Kappa (Appendix C), and correctness labels are not defined as 'GPT-4o agrees with itself.' A more concrete gap is that the Appendix C validation samples only 100 predictions per task at 128k from GPT-4o (LC) and Qwen-2.5-7B (LC), so the paper's claim that GPT-4o evaluation is consistent 'whether applied to large or small models' is not fully supported for RAG outputs or the other nine models. That is an external-validity and statistical-support limitation, not a circularity: no quoted equation or construction makes any reported Avg GAP equal its input by definition. Self-citations to GTE-large-en-v1.5 and related retrieval tools are implementation choices with independent external evaluations, not load-bearing justifications of the routing conclusions. The paper is therefore best assessed as having no significant circularity, with judge-generalization concerns belonging under correctness risk rather than circularity.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The comparison is empirical, so the axiom ledger captures the modeling choices and external assumptions that the conclusions depend on. The fixed RAG configuration, the timeliness and leakage assumptions for contexts, and the generalization of the GPT-4o judge to all models are the main load-bearing premises. There are no fitted constants or invented entities.

free parameters (4)
  • RAG chunk size = 600 tokens
    Chosen by hand as the default RAG configuration in Section 4.1; Figure 2c-2d shows that accuracy changes with chunk size, so the RAG-vs-LC comparison is conditional on this value.
  • RAG top-k chunks = 5 chunks
    Chosen by hand in Section 4.1; Figure 2a-2b shows that accuracy varies with the number of chunks, and the optimal number differs between 7B and 72B models.
  • RAG overlap = 100 tokens
    Chosen by hand together with chunk size in Section 4.1; not varied in the experiments, so its effect on the results is unknown.
  • Annotation pass rate threshold = not specified
    Section 3.3 says prompts are refined until a predefined pass rate is achieved, but the threshold is never stated, so the quality bar for benchmark items is unclear.
assumptions (4)
  • domain assumption The selected 2024 contexts (financial statements, arXiv papers) and entity-replaced novels are not memorized in LLM training data, so questions cannot be answered from parametric memory alone.
    Invoked in Section 3.1 under 'Timeliness' and 'Entity Replacement'; if leakage occurs, the benchmark measures memorization rather than context use.
  • domain assumption GPT-4o's judgments of answer correctness align with human judgments for all evaluated models and RAG configurations.
    The paper computes Cohen's Kappa on 100 samples per task for two LC setups (Appendix C, Table 4), then generalizes to all models and to RAG outputs.
  • domain assumption The fixed retrieval pipeline (GTE-large-en-v1.5 + hybrid embedding/BM25, 600-token chunks, top-5) is a fair representation of RAG systems.
    All RAG accuracy numbers in Table 2 use this pipeline; Section 4.5 varies it only for Qwen models, so the broader conclusions depend on this configuration.
  • domain assumption Generated QA pairs are answerable only from the provided context and have definitive answers.
    The annotation process (Section 3.3) uses GPT-4o generation with manual sampling; the paper does not report the fraction of ambiguous or context-independent items in the final 2326 cases.

how reviews work

0 comments
Cite this review

Pith. "Pith review of LaRA: Benchmarking Retrieval-Augmented Generation and Long-Context LLMs -- No Silver Bullet for LC or RAG Routing." pith.science (2026). https://pith.science/paper/Q73HBJG2

@misc{pith2026250209977,
  author       = {Pith},
  title        = {Pith review of: LaRA: Benchmarking Retrieval-Augmented Generation and Long-Context LLMs -- No Silver Bullet for LC or RAG Routing},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/Q73HBJG2}},
  note         = {Machine review of arXiv:2502.09977}
}
read the original abstract

Effectively incorporating external knowledge into Large Language Models (LLMs) is crucial for enhancing their capabilities and addressing real-world needs. Retrieval-Augmented Generation (RAG) offers an effective method for achieving this by retrieving the most relevant fragments into LLMs. However, the advancements in context window size for LLMs offer an alternative approach, raising the question of whether RAG remains necessary for effectively handling external knowledge. Several existing studies provide inconclusive comparisons between RAG and long-context (LC) LLMs, largely due to limitations in the benchmark designs. In this paper, we present LaRA, a novel benchmark specifically designed to rigorously compare RAG and LC LLMs. LaRA encompasses 2326 test cases across four practical QA task categories and three types of naturally occurring long texts. Through systematic evaluation of seven open-source and four proprietary LLMs, we find that the optimal choice between RAG and LC depends on a complex interplay of factors, including the model's parameter size, long-text capabilities, context length, task type, and the characteristics of the retrieved chunks. Our findings provide actionable guidelines for practitioners to effectively leverage both RAG and LC approaches in developing and deploying LLM applications. Our code and dataset is provided at: \href{https://github.com/Alibaba-NLP/LaRA}{\textbf{https://github.com/Alibaba-NLP/LaRA}}.

Figures

Figures reproduced from arXiv: 2502.09977 by the authors.

Figure 1
Figure 1. The average accuracy across different context types. The left figure (a) represents a context length of 32k, while the right figure (b) represents a context length of 128k. Scaling law holds in LC. Our experimental results confirm the established scaling law in LC (Kaplan et al., 2020): larger models consistently outperform smaller counterparts. For example, GPT-4o and Qwen-2.5-72B￾Instruct show significant performa… view at source ↗
Figure 2
Figure 2. The accuracy of Qwen-2.5-72B-Instruct and Qwen-2.5-7B-Instruct with different chunk quantity and size on LaRA. Hallucination detection. This is the only task where RAG demonstrates a clear advantage in both small and large models. LC tends to generate more hallucinated or incorrect answers, likely due to the increased noise introduced by feeding the entire text to the model. This makes the model more susceptible to … view at source ↗
Figure 3
Figure 3. The prompt for extracting named entities from novel chunks. The chunk that need to be extracted is highlighted in red text. C. LLM as A Judge Given the unreliability of rule-based evaluations and the high costs associated with human evaluation, the use of LLM for assessment has gained increasing popularity (Liu et al., 2024b; Wang et al., 2024). In LaRA, we prompt GPT-4o to determine whether a model correctly answer… view at source ↗
Figures from the paper (11 more)
Figure 4
Figure 4. Figure 4: The prompt for replacing the names with fictitious ones. Example prompt used for Evaluation Task: You are a discriminator that judges whether the predictions to questions are correct. I will provide you with a question and its Ground-truth answer, as well as an answer …
Figure 5
Figure 5. Figure 5: The prompt for evaluation. A Cohen’s Kappa coefficient greater than zero indicates consistency in the evaluation, with values approaching 1 indicating stronger agreement. We sample 100 predictions from each task type at a 128k context length from GPT-4o (LC) and Qwen-2…
Figure 6
Figure 6. Figure 6: The accuracy of the location and reasoning tasks when the answer appears at different positions within the context. 32k-length and 128k-length contexts are split into 5 and 10 segments, respectively. The contexts here are novels and financial statements, as we split pa…
Figure 7
Figure 7. Figure 7: The prompt for generating QA pairs. those that a person could realistically ask based on the given context. While questions designed solely to challenge LLMs have academic value, they do not address the considerations necessary for designing a real-world RAG or LC plan…
Figure 8
Figure 8. Figure 8: The prompt for generating QA pairs [PITH_FULL_IMAGE:figures/full_fig_p018_8.png]
Figure 9
Figure 9. Figure 9: The prompt for generating QA pairs [PITH_FULL_IMAGE:figures/full_fig_p019_9.png]
Figure 10
Figure 10. Figure 10: The prompt for generating QA pairs [PITH_FULL_IMAGE:figures/full_fig_p020_10.png]
Figure 11
Figure 11. Figure 11: The examples of location task. Examples of reasoning task Novel [Query] Why did Richard know by the second meeting that Karen didn’t like sweets? [Ground-truth Answer] Because during their first meeting over a meal, Richard noticed that Karen quietly disposed of the d…
Figure 12
Figure 12. Figure 12: The examples of reasoning task [PITH_FULL_IMAGE:figures/full_fig_p021_12.png]
Figure 13
Figure 13. Figure 13: The examples of comparison task. Examples of hallucination detection task Novel [Query] What type of flower did Alexander place on Violet’s grave in the cemetery? [Ground-truth Answer] TThe text does not mention Alexander placing any type of flower on Violet’s grave i…
Figure 14
Figure 14. Figure 14: The examples of hallucination detection task [PITH_FULL_IMAGE:figures/full_fig_p022_14.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 2 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Reason Before You Retrieve: Agentic Planning for Multi-modal RAG

    cs.AI 2026-06 reject novelty 5.0 of 10

    MM-R2 claims SOTA multimodal RAG accuracy on InfoSeek and Encyclopedic VQA via intent grounding plus a 10-topic KnowledgeMap, but its teacher trajectories leak the gold Wikipedia page and omit the image.

  2. Lucy: edgerunning agentic web search on mobile with machine generated task vectors

    cs.CL 2025-08 reject novelty 4.0 of 10

    A 1.7B model trained with reward-shaped reinforcement learning scores 78.3% on SimpleQA, which the authors claim matches much larger models.

Reference graph

Works this paper leans on

30 extracted references · 16 canonical work pages · cited by 2 Pith papers

  1. [1]

    This chunk size optimizes the balance between LLMs’ context window constraints and narrative continuity requirements

    We partition input texts into coherent segments averaging 500 tokens, preserving complete sentence/paragraph boundaries. This chunk size optimizes the balance between LLMs’ context window constraints and narrative continuity requirements

  2. [2]

    The Dark Lord

    Each text chunk undergoes parallel entity recognition through GPT-4o processing. Our extraction protocol captures both original names and contextual variants (e.g., “The Dark Lord”→ “V oldemort” in Harry Potter). After feeding each chunk for extraction, we merge all the entities and remove duplicates to obtain a final list of entities while preserving leg...

  3. [3]

    Clearly,

    For alias disambiguation, we prompt GPT-4o with the entity list and the novel’s title to determine if multiple names indicate the same character, and if they do, we replace them with the same fake name. Figure 3 and Figure 4 detail our carefully engineered prompts for entity extraction and substitution respectively. Note that the novels we select are clas...

  4. [4]

    How did the average revenue per Full Course Equivalent (FCE) enrollment change in the Degree Program Segment compared to the Alternative Credential Segment from 2022 to 2023?

    Response Specifications: - Maximum answer length: avoid too long - Comparisons must use contextually appropriate units Example QAs: {Q: “How did the average revenue per Full Course Equivalent (FCE) enrollment change in the Degree Program Segment compared to the Alternative Credential Segment from 2022 to 2023?”, A:“The average revenue per FCE enrollment i...

  5. [5]

    doi: 10.18653/V1/2023.EMNLP-MAIN

  6. [7]

    doi: 10.18653/V1/2024.FINDINGS-ACL

  7. [12]

    doi: 10.18653/V1/2023.FINDINGS-EMNLP

  8. [14]

    doi: 10.18653/V1/2024.FINDINGS-NAACL

Show all 30 references
  1. [16]

    emnlp-main.322

    URL https://aclanthology.org/2024. emnlp-main.322. Wang, X., Jiang, Y ., Bach, N., Wang, T., Huang, Z., Huang, F., and Tu, K. Improving named entity recognition by external context retrieving and cooperative learning. In Proceedings of the 59th Annual Meeting of the Associatio...

  2. [17]

    URL https: //doi.org/10.48550/arXiv.2409.01666

    doi: 10.48550/ARXIV .2409.01666. URL https: //doi.org/10.48550/arXiv.2409.01666. Zhang, X., Chen, Y ., Hu, S., Xu, Z., Chen, J., Hao, M. K., Han, X., Thai, Z. L., Wang, S., Liu, Z., and Sun, M. ınftybench: Extending long context evaluation beyond 100k tokens. In Ku, L., Martin...

  3. [22]

    Direct Extraction: - The answer must be explicitly stated in a single contiguous segment of the document - Require pinpoint localization (e.g., specific value, exact date, named section)

  4. [23]

    Answerability Constraints: - Unanswerable without the provided context - Must reference concrete elements (numerical values, named metrics, verbatim terms)

  5. [24]

    What was the amount of impairment changes recorded to goodwill during the three months ended December 31, 2023?

    Response Specifications: - Maximum answer length: 20 words - Prohibit any interpretive phrasing Example QAs: {Q: “What was the amount of impairment changes recorded to goodwill during the three months ended December 31, 2023?”, A:“$62.8 million.”} {Q: “How many reportable busi...

  6. [25]

    Require multi-step processing of: - Numerical calculations (e.g., ratios, growth rates) - Temporal comparisons - Reasonable inferences

  7. [26]

    Answerability Constraints: - Unanswerable without the provided context - Impossible to answer through simple lookup

  8. [27]

    The percentage increase is (14,843,358 / 22,008,739) * 100, which equals approximately 67.5%

    Response Specifications: - Maximum answer length: avoid too long - Forbid speculative or probabilistic responses Example QAs: {Q: “Calculate the percentage increase in total assets from December 31, 2023, to March 31, 2024, and explain what this increase indicates about the co...

  9. [28]

    Must reference: - Disparate metrics (e.g., departmental budgets vs regional sales) - Chronological differences (quarterly/annual comparisons) - Contrasting categories (actual vs projected figures)

  10. [29]

    Dependency Rules: - Each segment provides unique essential information - No overlapping data between required sections

  11. [30]

    Answerability Constraints: - Unanswerable without the provided context - Answer must demonstrate relational understanding - Require explicit mention of both referenced sections

  12. [32]

    Surface-level Relevance: - Use document-specific terminology - Reference actual sections/metrics as distractors

  13. [33]

    Unanswerability Guarantees: - Absolutely not mentioned in the context - Missing critical data points required for resolution - No inferential path from provided information

  14. [34]

    What measures are being taken to mitigate foreign currency risk?

    Confirm absence of: - Direct mentions - Implied values - Comparable proxies Example QAs: {Q: “What measures are being taken to mitigate foreign currency risk?”, A:“The document does not specify any measures being taken to mitigate foreign currency risk.”} {Q: “What is the comp...

  15. [391]

    Qi, Z., Xu, R., Guo, Z., Wang, C., Zhang, H., and Xu, W

    URL https://doi.org/10.18653/v1/ 2022.naacl-main.391. Qi, Z., Xu, R., Guo, Z., Wang, C., Zhang, H., and Xu, W. Long2rag: Evaluating long-context & long- form retrieval-augmented generation with key point recall. In Findings of the Association for Computational Linguistics: EMN...

  16. [415]

    URL https://doi.org/10.18653/v1/ 2024.findings-acl.415. A. Statistics of LaRA LaRA consists of approximately 2300 test cases, encompassing three context types and four task categories. To ensure that the token count of the context is as close as possible to 32k and 128k withou...

  17. [658]

    Lyu, Y ., Li, Z., Niu, S., Xiong, F., Tang, B., Wang, W., Wu, H., Liu, H., Xu, T., and Chen, E

    URL https://doi.org/10.18653/v1/ 2024.findings-acl.658. Lyu, Y ., Li, Z., Niu, S., Xiong, F., Tang, B., Wang, W., Wu, H., Liu, H., Xu, T., and Chen, E. CRUD- RAG: A comprehensive chinese benchmark for retrieval- augmented generation of large language models. CoRR, abs/2401.170...

  18. [2022]

    doi: 10.18653/V1/2022.NAACL-MAIN

  19. [2023]

    Kaplan, J., McCandlish, S., Henighan, T., Brown, T

    URL https://github.com/gkamradt/ LLMTest_NeedleInAHaystack. Kaplan, J., McCandlish, S., Henighan, T., Brown, T. B., Chess, B., Child, R., Gray, S., Radford, A., Wu, J., and Amodei, D. Scaling laws for neural language models. CoRR, abs/2001.08361, 2020. URL https://arxiv. org/a...

  20. [2024]

    URL https: //doi.org/10.1609/aaai.v38i16.29728

    doi: 10.1609/AAAI.V38I16.29728. URL https: //doi.org/10.1609/aaai.v38i16.29728. Chiang, D. C. and Lee, H. Can large language models be an alternative to human evaluations? In Rogers, A., Boyd-Graber, J. L., and Okazaki, N. (eds.), Proceedings of the 61st Annual Meeting of the ...

  21. [2099]

    URL https:// aclanthology.org/2024.lrec-main.188

    ELRA and ICCL, 2024. URL https:// aclanthology.org/2024.lrec-main.188. Gao, Y ., Xiong, Y ., Gao, X., Jia, K., Pan, J., Bi, Y ., Dai, Y ., Sun, J., Guo, Q., Wang, M., and Wang, H. Retrieval- augmented generation for large language models: A survey. CoRR, abs/2312.10997, 2023. ...

  22. [7989]

    Association for Computational Linguistics,

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.