Pith. sign in

REVIEW 2 major objections 2 minor 5 cited by

The Efficiency Frontier framework treats LLM context management as a deployment-aware optimization problem that jointly models task performance, token cost, and amortized preprocessing reuse.

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

T0 review · grok-4.3

2026-06-30 16:31 UTC pith:K7MARZMI

load-bearing objection The paper gives a practical framing for trading off LLM context strategies by cost and performance, but the reported gains hinge on amortization assumptions that need real workload checks. the 2 major comments →

arxiv 2605.23071 v2 pith:K7MARZMI submitted 2026-05-21 cs.CL

The Efficiency Frontier: A Unified Framework for Cost-Performance Optimization in LLM Context Management

classification cs.CL
keywords LLM context managementefficiency frontiercost-performance optimizationamortized cost modelingretrievalmemory compressionHotpotQAtoken usage
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

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

This paper introduces The Efficiency Frontier as a unified way to compare context reduction methods for large language models. Instead of judging retrieval or memory compression only on accuracy or speed in isolation, the approach builds cost-performance curves that include amortized preprocessing costs. On HotpotQA the curves reveal clear transition points where one strategy becomes cheaper than another while keeping performance steady. Deployment-aware selection cuts effective token use by about 25 percent at matched accuracy and lets memory compression drop token cost by more than half versus full-context prompting in higher-accuracy regimes.

Core claim

The Efficiency Frontier models context strategy selection as a deployment-aware optimization problem that accounts for task performance, token cost, and preprocessing reuse through amortized cost modeling, revealing distinct operational regimes and transition boundaries between retrieval-based and preprocessing-based strategies on HotpotQA.

What carries the argument

The Efficiency Frontier: a set of cost-performance curves generated by joint optimization over accuracy, token usage, and amortized preprocessing reuse that mark when one context strategy overtakes another under changing operational conditions.

Load-bearing premise

The amortized cost modeling of preprocessing reuse accurately reflects real deployment costs and the operational regimes seen on HotpotQA generalize to other tasks, models, and cost structures.

What would settle it

A controlled experiment that measures actual preprocessing reuse costs in a production deployment and shows the reported 25 percent and 50 percent token savings disappear or that the HotpotQA regime boundaries shift on a different multi-hop QA task.

Watch this falsifier — get emailed when new claim-graph text bears on it.

If this is right

  • Deployment-aware selection reduces effective token usage by approximately 25 percent while holding performance constant.
  • Amortized memory compression delivers over 50 percent lower token cost than full-context prompting once higher performance is required.
  • Distinct operational regimes appear where retrieval is preferable at lower cost targets and preprocessing methods dominate at higher performance targets.
  • The framework supplies concrete transition boundaries that let practitioners switch strategies as workload or budget changes.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same frontier construction could be repeated on other long-context benchmarks to test whether the same regime ordering holds.
  • Dynamic cost models that update amortization rates at runtime might sharpen the location of the transition boundaries.
  • The curves could be used to set target operating points when designing new context-reduction algorithms rather than optimizing for accuracy alone.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

2 major / 2 minor

Summary. The paper introduces The Efficiency Frontier, a unified framework for cost-performance optimization in LLM context management. It models context strategy selection as a deployment-aware optimization problem that jointly accounts for task performance, token cost, and preprocessing reuse through amortized cost modeling. Unlike isolated evaluations, the framework enables decision-oriented analysis to identify when different strategies (retrieval-based vs. preprocessing-based) become preferable under varying conditions. Experiments on HotpotQA reveal distinct operational regimes and transition boundaries, with deployment-aware optimization reducing effective token usage by ~25% at comparable performance and amortized memory compression achieving >50% lower token cost than full-context prompting in higher-performance settings.

Significance. If the modeling and boundaries hold, the framework offers a practical tool for deployment decisions in LLM systems by explicitly incorporating amortized preprocessing costs and operational regimes. This could improve cost-efficiency in long-context applications. The decision-oriented perspective is a strength relative to prior isolated metric comparisons, though its impact depends on empirical robustness of the amortization assumptions.

major comments (2)
  1. [Amortized cost modeling and experimental results] The reported 25% and 50% gains, as well as the identified transition boundaries, depend on the amortized preprocessing cost modeling. The manuscript provides no empirical validation of this modeling on real multi-query workloads that account for variance in batch sizes, cache hit rates, or deployment overheads (as noted in the stress-test concern). This is load-bearing for the central claim because the preference regimes and cost reductions are derived directly from the amortization; without matching end-to-end measurements, the boundaries may not reflect actual deployment costs.
  2. [Experiments section] All experiments and regime identification are performed on HotpotQA only. No results or analysis demonstrate that the operational regimes or transition points generalize to other tasks, models, or cost structures, which directly affects the framework's claimed applicability for 'enterprise, scientific, and public-sector applications.'
minor comments (2)
  1. The abstract and introduction would benefit from explicit definitions or a small illustrative example of how the amortized cost is computed (e.g., preprocessing cost divided by expected query volume) to clarify the framework before the results.
  2. No discussion of potential failure modes or sensitivity analysis for the amortization assumption (e.g., low cache-hit scenarios) is provided, which would strengthen the decision-oriented analysis.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the detailed and constructive feedback. The comments highlight important aspects of the amortized modeling assumptions and the scope of empirical validation. We address each major comment below with proposed revisions.

read point-by-point responses
  1. Referee: The reported 25% and 50% gains, as well as the identified transition boundaries, depend on the amortized preprocessing cost modeling. The manuscript provides no empirical validation of this modeling on real multi-query workloads that account for variance in batch sizes, cache hit rates, or deployment overheads. This is load-bearing for the central claim because the preference regimes and cost reductions are derived directly from the amortization; without matching end-to-end measurements, the boundaries may not reflect actual deployment costs.

    Authors: We agree that the amortized cost modeling is foundational and that the reported gains are derived from analytical amortization applied to the HotpotQA results rather than direct end-to-end measurements on multi-query workloads. The framework intentionally uses modeling to enable decision-oriented analysis without requiring full deployment traces. In revision we will expand the methods and discussion sections to explicitly state the amortization assumptions (including batch size and cache hit rate sensitivity), add a simulated stress-test varying these parameters, and include a dedicated limitations paragraph noting that real-world validation on production workloads remains future work. This constitutes a partial revision as we cannot add new empirical deployment data at this stage. revision: partial

  2. Referee: All experiments and regime identification are performed on HotpotQA only. No results or analysis demonstrate that the operational regimes or transition points generalize to other tasks, models, or cost structures, which directly affects the framework's claimed applicability for 'enterprise, scientific, and public-sector applications.'

    Authors: The framework is formulated as a general optimization model that can be instantiated for any task given performance and cost measurements. The HotpotQA experiments serve to demonstrate regime identification and boundary detection under the framework. We acknowledge that the specific numerical regimes are task-specific. We will revise the abstract, introduction, and conclusion to clarify that the framework is general while the illustrated regimes and savings figures are derived from HotpotQA, and we will add a future-work paragraph on cross-task validation. These changes will be incorporated. revision: yes

Circularity Check

0 steps flagged

No significant circularity in derivation or claims

full rationale

The paper proposes a new Efficiency Frontier framework that jointly models task performance, token cost, and amortized preprocessing reuse as a deployment-aware optimization problem. It then reports independent experimental comparisons on HotpotQA that identify operational regimes and quantify token reductions (25% and >50%). No equations, fitted parameters, or self-citations are shown that reduce these results to the inputs by construction. The central claims rest on new modeling choices and fresh empirical measurements rather than self-referential definitions or load-bearing prior self-work.

Axiom & Free-Parameter Ledger

0 free parameters · 0 axioms · 0 invented entities

Only the abstract is available, so no concrete free parameters, axioms, or invented entities can be extracted; the framework likely introduces new modeling choices for amortized cost but details are absent.

pith-pipeline@v0.9.1-grok · 5757 in / 1172 out tokens · 56103 ms · 2026-06-30T16:31:39.572712+00:00 · methodology

0 comments
read the original abstract

Large language models (LLMs) increasingly rely on long-context processing, but expanding context windows introduces substantial computational and financial costs. Existing context reduction approaches, including retrieval and memory compression methods, are typically evaluated using performance and efficiency metrics independently, limiting systematic comparison and deployment-aware decision-making. This paper introduces The Efficiency Frontier, a unified framework for cost--performance optimization in LLM context management. The framework models context strategy selection as a deployment-aware optimization problem that jointly accounts for task performance, token cost, and preprocessing reuse through amortized cost modeling. Unlike existing evaluations that compare methods in isolation, the proposed framework enables decision-oriented analysis. It identifies when different context management strategies become preferable under varying operational conditions. Experiments on HotpotQA reveal distinct operational regimes and transition boundaries between retrieval-based and preprocessing-based strategies. Results show that deployment-aware optimization reduces effective token usage by approximately 25% at comparable performance, enabling more cost-efficient deployment of large language model systems, while amortized memory compression achieves over 50% lower token cost relative to full-context prompting in higher-performance settings. Overall, the proposed framework provides a principled and practical foundation for evaluating and deploying scalable, efficient, and sustainable LLM systems across enterprise, scientific, and public-sector applications.

Figures

Figures reproduced from arXiv: 2605.23071 by Binqi Shen, Hanyu Cai, Lan Hu, Lier Jin, Yuting Xin.

Figure 1
Figure 1. Figure 1: Strategy-level Efficiency Frontiers and decision paths. Each panel plots token cost versus task performance (F1). Faint points denote all evaluated [PITH_FULL_IMAGE:figures/full_fig_p005_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: Global Efficiency Frontier under different reuse regimes ( [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Forward citations

Cited by 5 Pith papers

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

  1. FinAbstain: Uncertainty-Calibrated Multimodal RAG for Selective Financial Forecasting

    cs.LG 2026-07 reject novelty 6.0

    A multimodal RAG system with point-in-time retrieval and calibrated abstention is presented, with only simulated evidence that refusal reduces selective error and drawdown.

  2. Cross-Model LLM Code Review: Should you use Claude to review Codex or vice versa?

    cs.SE 2026-07 conditional novelty 6.0

    On 116 LiveCodeBench tasks, Claude reviewing Codex raised pass rate from 71.6% to 89.7%, while Codex reviewing Claude lowered it from 91.4% to 82.8%.

  3. Bridging Reasoning Trajectories in On-Policy Distillation via Near-Future Guidance

    cs.CL 2026-05 unverdicted novelty 6.0

    TOPD augments on-policy distillation by using near-future trajectory signals to suppress non-divergent high-loss tokens and distribute guidance, raising average accuracy from 47.8% to 52.2% on reasoning benchmarks.

  4. Bridging Reasoning Trajectories in On-Policy Distillation via Near-Future Guidance

    cs.CL 2026-05 unverdicted novelty 6.0

    TOPD improves on-policy distillation for LLM reasoning by using near-future guidance to identify divergent states, raising average accuracy from 47.8% to 52.2% on math benchmarks including AIME24 and AIME25.

  5. How Early Is Early Enough? Design-Dependent Observation-Window Sufficiency in Subscription Churn Prediction

    cs.LG 2026-07 unverdicted novelty 5.0

    Observation-window sufficiency for churn prediction is highly design-dependent, showing a diminishing-returns knee at 45-90 days in standard setups but inverting under moving-target definitions on the KKBox dataset.

Reference graph

Works this paper leans on

41 extracted references · 41 canonical work pages · cited by 4 Pith papers · 8 internal anchors

  1. [1]

    Industrial applications of large language models,

    M. Raza, Z. Jahangir, M. B. Riaz, M. J. Saeed, and M. A. Sattar, “Industrial applications of large language models,”Scientific Reports, vol. 15, no. 1, p. 13755, Apr. 2025

  2. [2]

    Dissecting the runtime performance of the training, fine-tuning, and inference of large language models,

    L. Zhang, X. Liu, Z. Li, X. Pan, P. Dong, R. Fan, R. Guo, X. Wang, Q. Luo, S. Shi, and X. Chu, “Dissecting the runtime performance of the training, fine-tuning, and inference of large language models,”

  3. [3]

    Available: https://arxiv.org/abs/2311.03687

    [Online]. Available: https://arxiv.org/abs/2311.03687

  4. [4]

    Evaluation of tunnel rock mass integrity using multi-modal data and generative large model: Tunnel rip-gpt,

    C. Wu, H. Huang, and Y .-Q. Ni, “Evaluation of tunnel rock mass integrity using multi-modal data and generative large model: Tunnel rip-gpt,”SSRN Electronic Journal, 2025. [Online]. Available: https://ssrn.com/abstract=5348429

  5. [5]

    Sustainable ai: Environmental implications, challenges and opportunities,

    C.-J. Wu, R. Raghavendra, U. Gupta, B. Acun, N. Ardalani, K. Maeng, G. Chang, F. Aga, J. Huang, C. Baiet al., “Sustainable ai: Environmental implications, challenges and opportunities,”Proceedings of machine learning and systems, vol. 4, pp. 795–813, 2022

  6. [6]

    Environmental and economic costs behind llms,

    P. L ´opez- ´Ubeda, T. Mart´ın-Noguerol, and A. Luna, “Environmental and economic costs behind llms,”Nature Reviews Electrical Engineering, vol. 21, no. 3, pp. 661–663, Mar. 2026

  7. [7]

    Longllmlingua: Accelerating and enhancing llms in long context sce- narios via prompt compression,

    H. Jiang, Q. Wu, X. Luo, D. Li, C.-Y . Lin, Y . Yang, and L. Qiu, “Longllmlingua: Accelerating and enhancing llms in long context sce- narios via prompt compression,” inProceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), 2024, pp. 1658–1677

  8. [8]

    Retrieval meets long context large language models,

    P. Xu, W. Ping, X. Wu, L. McAfee, C. Zhu, Z. Liu, S. Subramanian, E. Bakhturina, M. Shoeybi, and B. Catanzaro, “Retrieval meets long context large language models,” inInternational Conference on Learning Representations, vol. 2024, 2024, pp. 49 569–49 584

  9. [9]

    MAGMA: A Multi-Graph based Agentic Memory Architecture for AI Agents

    D. Jiang, Y . Li, G. Li, and B. Li, “Magma: A multi-graph based agentic memory architecture for ai agents,”arXiv preprint arXiv:2601.03236, 2026

  10. [10]

    Holistic Evaluation of Language Models

    “Holistic evaluation of language models,” 2023. [Online]. Available: https://arxiv.org/abs/2211.09110

  11. [11]

    Pollertlam and W

    N. Pollertlam and W. Kornsuwannawit, “Beyond the context window: A cost-performance analysis of fact-based memory vs. long-context llms for persistent agents,” 2026. [Online]. Available: https://arxiv.org/ abs/2603.04814

  12. [12]

    Anatomy of Agentic Memory: Taxonomy and Empirical Analysis of Evaluation and System Limitations

    D. Jiang, Y . Li, S. Wei, J. Yang, A. Kishore, A. Zhao, D. Kang, X. Hu, F. Chen, Q. Liet al., “Anatomy of agentic memory: Taxonomy and empirical analysis of evaluation and system limitations,”arXiv preprint arXiv:2602.19320, 2026

  13. [13]

    HotpotQA: A Dataset for Diverse, Explainable Multi-hop Question Answering

    Z. Yang, P. Qi, S. Zhang, Y . Bengio, W. W. Cohen, R. Salakhutdinov, and C. D. Manning, “Hotpotqa: A dataset for diverse, explainable multi-hop question answering,” 2018. [Online]. Available: https: //arxiv.org/abs/1809.09600

  14. [14]

    Benchmark for evaluating initialization of visual-inertial odometry,

    Z. Zhao and B. M. Chen, “Benchmark for evaluating initialization of visual-inertial odometry,” in2023 42nd Chinese Control Conference (CCC). IEEE, 2023, pp. 3935–3940

  15. [15]

    A data-centric perspective on the lifecycle of large language models,

    J. Rao, X. Liu, H. Yan, J. Shen, H. Mo, Y . Dong, Z. Yan, Z. Wang, Z. Lin, X. Meng, Z. Yu, L. Deng, J. Wei, Y . Wang, and M. Zhang, “A data-centric perspective on the lifecycle of large language models,” TechRxiv, vol. 2025, no. 1220, 2025. [Online]. Available: https: //www.techrxiv.org/doi/abs/10.36227/techrxiv.176620610.03288677/v1

  16. [16]

    Green ai,

    R. Schwartz, J. Dodge, N. A. Smith, and O. Etzioni, “Green ai,” Communications of the ACM, vol. 63, no. 12, pp. 54–63, 2020

  17. [17]

    Reward Auditor: Inference on Reward Modeling Suitability in Real-World Perturbed Scenarios

    J. Zang, Y . Wei, R. Bai, S. Jiang, N. Mo, B. Li, Q. Sun, and H. Liu, “Reward auditor: Inference on reward modeling suitability in real-world perturbed scenarios,”arXiv preprint arXiv:2512.00920, 2025

  18. [18]

    High-recall deep learning: A gated recurrent unit approach to bank account fraud detection on imbalanced data,

    W. Sun, Z. Qi, and Q. Shen, “High-recall deep learning: A gated recurrent unit approach to bank account fraud detection on imbalanced data,” in2025 5th International Conference on Digital Society and Intelligent Systems (DSInS), 2025, pp. 207–212

  19. [19]

    Task- specific efficiency analysis: When small language mod- els outperform large language models,

    J. Cao, Y . Ma, X. Li, Q. Ren, and X. Chen, “Task-specific efficiency analysis: When small language models outperform large language models,” 2026. [Online]. Available: https://arxiv.org/abs/2603.21389

  20. [20]

    Lost in the middle: How language models use long contexts,

    N. F. Liu, K. Lin, J. Hewitt, A. Paranjape, M. Bevilacqua, F. Petroni, and P. Liang, “Lost in the middle: How language models use long contexts,” Transactions of the association for computational linguistics, vol. 12, pp. 157–173, 2024

  21. [21]

    Context length alone hurts llm perfor- mance despite perfect retrieval.arXiv preprint arXiv:2510.05381,

    Y . Du, M. Tian, S. Ronanki, S. Rongali, S. Bodapati, A. Galstyan, A. Wells, R. Schwartz, E. A. Huerta, and H. Peng, “Context length alone hurts llm performance despite perfect retrieval,” 2025. [Online]. Available: https://arxiv.org/abs/2510.05381

  22. [22]

    Ali Behrouz, Peilin Zhong, and Vahab Mirrokni

    R. Bansal, A. Zhang, R. Tiwari, L. Madaan, S. S. Duvvuri, D. Khatri, D. Brandfonbrener, D. Alvarez-Melis, P. Bhargava, M. S. Kaleet al., “Let’s (not) just put things in context: Test-time training for long-context llms,”arXiv preprint arXiv:2512.13898, 2025

  23. [23]

    Long context, less focus: A scaling gap in llms revealed through privacy and personalization,

    S. Gu, “Long context, less focus: A scaling gap in llms revealed through privacy and personalization,”arXiv preprint arXiv:2602.15028, 2026

  24. [24]

    Longbench pro: A more realistic and comprehensive bilingual long- context evaluation benchmark,

    Z. Chen, X. Wu, J. Jia, C. Gao, Q. Fu, D. Zhang, and S. Hu, “Longbench pro: A more realistic and comprehensive bilingual long- context evaluation benchmark,”arXiv preprint arXiv:2601.02872, 2026

  25. [25]

    Attention is all you need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,”Advances in neural information processing systems, vol. 30, 2017

  26. [26]

    Longbench: A bilingual, multitask benchmark for long context understanding,

    Y . Bai, X. Lv, J. Zhang, H. Lyu, J. Tang, Z. Huang, Z. Du, X. Liu, A. Zeng, L. Houet al., “Longbench: A bilingual, multitask benchmark for long context understanding,” inProceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 3119–3137

  27. [27]

    Do transformers always win? an empirical study of semantic embeddings for short-text e-commerce reviews,

    L. Lai, Z. Cheng, K. Cheng, and X. Qi, “Do transformers always win? an empirical study of semantic embeddings for short-text e-commerce reviews,” in2026 9th International Symposium on Big Data and Applied Statistics (ISBDAS), 2026, pp. 525–529

  28. [28]

    In-context Autoencoder for Context Compression in a Large Language Model

    T. Ge, J. Hu, L. Wang, X. Wang, S.-Q. Chen, and F. Wei, “In-context autoencoder for context compression in a large language model,”arXiv preprint arXiv:2307.06945, 2023

  29. [29]

    Cogvla: Cognition- aligned vision-language-action model via instruction-driven routing & sparsification,

    W. Li, R. Zhang, R. Shao, J. He, and L. Nie, “Cogvla: Cognition- aligned vision-language-action model via instruction-driven routing & sparsification,” inAdvances in Neural Information Processing Systems, 2025

  30. [30]

    Reasoning-enhanced domain-adaptive pretraining of multimodal large language models for short video content governance,

    Z. Wang, Y . Sun, H. Wang, B. Jing, X. Shen, X. Dong, Z. Hao, H. Xiong, and Y . Song, “Reasoning-enhanced domain-adaptive pretraining of multimodal large language models for short video content governance,” inProceedings of the 2025 Conference on Empirical Methods in Natural Language Processing: Industry Track, S. Potdar, L. Rojas-Barahona, and S. Montell...

  31. [31]

    Audio-enhanced vision-language modeling with latent space broadening for high quality data expansion,

    Y . Sun, Y . Li, R. Sun, C. Liu, F. Zhou, Z. Jin, L. Wang, X. Shen, Z. Hao, and H. Xiong, “Audio-enhanced vision-language modeling with latent space broadening for high quality data expansion,” in Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V .2, ser. KDD ’25. New York, NY , USA: Association for Computing Machinery...

  32. [32]

    Human Motion Instruction Tuning,

    L. Li, S. Jia, J. Wang, Z. Jiang, F. Zhou, J. Dai, T. Zhang, Z. Wu, and J.-N. Hwang, “Human Motion Instruction Tuning,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2025

  33. [33]

    Balf: Simple and efficient blur aware local feature detector,

    Z. Zhao, “Balf: Simple and efficient blur aware local feature detector,” inProceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, 2024, pp. 3362–3372

  34. [34]

    Semanticvla: Semantic-aligned sparsification and enhancement for ef- ficient robotic manipulation,

    W. Li, R. Zhang, R. Shao, Z. Fang, K. Zhou, Z. Tian, and L. Nie, “Semanticvla: Semantic-aligned sparsification and enhancement for ef- ficient robotic manipulation,” inProceedings of the AAAI Conference on Artificial Intelligence, 2026

  35. [35]

    Dynamic Sampling that Adapts: Self-Aware Iterative Data Persistent Optimization for Mathematical Reasoning

    J. Rao, X. Liu, H. Deng, Z. Lin, Z. Yu, J. Wei, X. Meng, and M. Zhang, “Dynamic sampling that adapts: Iterative dpo for self-aware mathematical reasoning,” 2025. [Online]. Available: https://arxiv.org/abs/2505.16176

  36. [36]

    Resilient Routing: Risk-Aware Dynamic Routing in Smart Logistics via Spatiotemporal Graph Learning

    Z. Xue, S. Zhao, Y . Qi, X. Zeng, and Z. Yu, “Resilient routing: Risk-aware dynamic routing in smart logistics via spatiotemporal graph learning,” 2026. [Online]. Available: https://arxiv.org/abs/2601.13632

  37. [37]

    Resolving the robustness-precision trade-off in financial rag through hybrid document-routed retrieval,

    Z. Cheng, L. Lai, and Y . Liu, “Resolving the robustness-precision trade-off in financial rag through hybrid document-routed retrieval,”

  38. [38]
  39. [39]

    GPT-5.4 mini,

    OpenAI, “GPT-5.4 mini,” OpenAI, Technical Report, 2026. [Online]. Available: https://platform.openai.com/docs/models

  40. [40]

    Semantic autoen- coder for modeling beol and mol dielectric lifetime distributions,

    W. Yan, E. Wu, A. G. Schwing, and E. Rosenbaum, “Semantic autoen- coder for modeling beol and mol dielectric lifetime distributions,” in 2023 IEEE International Reliability Physics Symposium (IRPS). IEEE, 2023, pp. 1–9

  41. [41]

    New loss function for learning dielectric thickness distributions and generative modeling of breakdown lifetime,

    W. Yan, E. Wu, and E. Rosenbaum, “New loss function for learning dielectric thickness distributions and generative modeling of breakdown lifetime,” in2025 IEEE International Reliability Physics Symposium (IRPS). IEEE, 2025, pp. 1–9