REVIEW 3 major objections 5 minor 82 references
RAG-Stack: Co-Optimizing RAG Serving Performance and Quality
T0 review · 3 major / 5 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read RAG-Stack claims that a hybrid cost-model-driven search finds RAG quality–performance Pareto frontiers that cover 52.5% to 153.2% more of the normalized objective space than existing configuration-search methods at the same evaluation budge
desk verdict A genuinely useful framework for co-optimizing RAG quality and serving performance, but the headline hypervolume gains are likely inflated by comparing predicted performance for RAG-Stack against measured performance for baselines. 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 mechanism is the split between algorithm and system design spaces, plus RAG-CM, a four-layer cost model that predicts serving performance without deployment. RAG-CM's algorithm layer turns each executed workflow into hardware-agnostic operator work profiles (operation counts, bytes, access patterns); a roofline model maps those profiles to time on the given hardware; a communication layer prices data movement between stages; and an assembly layer runs a closed discrete-event simulation over the system design space to return the best predicted deployment. The HNSW retrieval model is the one machine-learned piece: two gradient-boosted regressors predict per-query distance comp
What would settle it
Run RAG-CM against a truly new corpus and a hardware generation outside the two servers tested, with no re-calibration beyond the per-corpus constant, and compare predicted versus measured HNSW latency rankings across a grid of M and efSearch values. If the Spearman correlation of predicted versus measured order falls well below the reported 0.95–0.98 range, or if the predicted optimal efSearch flips relative to measured throughput, the transfer claim fails.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that the quality–performance Pareto frontier of a RAG system can be found efficiently by splitting the configuration space into an algorithm part (choices that change the answer) and a system part (choices that only change how the answer is served), then searching the algorithm part with a stage-aware multi-objective Bayesian optimizer while a cost model exhaustively searches deployments without deploying any. Evidence: on RAGEval and MS MARCO, with identical budgets, RAG-Stack's frontiers average 0.514 and 0.635 normalized hypervolume versus 0.364 and 0.259 for the strongest baseline — per-seed gains of 52.5% and 153.2% — and the calibrated cost mo
Load-bearing premise
RAG-Stack rests on the assumption that the cost model's learned predictor, trained once on synthetic data with only a corpus-geometry feature and a per-corpus scaling constant, will keep ranking index configurations correctly on new corpora and on new hardware; if that generalization fails, the whole search inherits the error.
Editorial extensions
If this is right
- On a new RAG application, the same evaluation budget yields a Pareto frontier covering roughly half again to two-and-a-half times more of the normalized quality–performance space than existing configuration-search methods.
- Migrating an optimized RAG system to different hardware can reuse archived quality measurements: 20 additional evaluations with a calibrated cost model recover a frontier 182.2% larger than re-optimizing from scratch.
- Because ranking, not absolute error, is what guides search, a cost model with 11–15% MAPE and 0.95+ Spearman correlation is sufficient to drive deployment selection.
- End-to-end search finishes in about 4.6 hours on RAGEval and 3.6 hours on MS MARCO on a four-H100 server, because no candidate is deployed to measure performance.
Reading between the lines
- The system-space abstraction (workflow schema plus per-request traces) is general enough that the same co-optimization loop could be applied to other multi-stage LLM serving pipelines, such as multi-agent workflows, even though the paper only evaluates sequential and agentic RAG.
- The reported quality gap between RAGEval and MS MARCO suggests public benchmarks may understate the serving cost of answer quality; a practitioner should re-tune on fresh data before trusting a public-benchmark frontier.
- The HNSW predictor's reliance on local intrinsic dimensionality implies a strong test: corpora with extreme geometry (nearly uniform or heavily clustered embeddings) should be used as a stress test for the transfer claim.
- Hardware planning before purchase is a natural use: RAG-CM can score candidate machines from a hardware description, which the paper motivates but does not evaluate as a standalone decision tool.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. RAG-Stack targets the quality-performance Pareto frontier of RAG deployments. It separates the design space into algorithm and system parameters. RAG-PE is a multi-objective Bayesian optimizer (LogNEHVI) augmented with stage-level diagnostics and heterogeneous candidate generation; RAG-IR abstracts executed workflows into a system-agnostic intermediate representation; RAG-CM combines analytical models for retrieval/operators, roofline/Amdahl performance modeling, communication pricing, and a closed-loop assembly that searches system settings. The evaluation claims that, under equal budgets, RAG-Stack frontiers cover 52.5% (RAGEval) and 153.2% (MS MARCO) more normalized hypervolume than GP+LogNEHVI, SMAC, and Greedy-Forward, that RAG-CM has 11.2-15.3% MAPE with Spearman 0.95-0.98, and that system transfer yields 182.2% hypervolume improvement over from-scratch optimization.
Significance. If the claims hold, the work is significant: it attacks a real problem, combines a credible cost model with a stage-aware optimizer, and includes a broad cost-model validation (137-1080 operator configs, 231 end-to-end configs, two systems) with high rank correlations. The optimizer ablation is well designed (77/80 post-warm-start budgets). Release of artifacts is a strength. The main reservation is methodological fairness of the end-to-end comparison because RAG-Stack's performance signal is predicted while baselines are measured.
major comments (3)
- [§3, §7.2, Fig. 8] The headline hypervolume comparison appears to mix predicted and measured performance. §3 states that for every candidate 'performance is always predicted by RAG-CM—no candidate is ever deployed to measure it,' while §7.2 says Figure 8 compares 'measured' frontiers and the caption re-measures only selected RAG-Stack configurations. Baselines are deployed and measured on every iteration (§7.1). If the hypervolume values (0.514 vs 0.364; 0.635 vs 0.259) use predicted throughput for RAG-Stack points, the comparison is not between measured frontiers. Rank correlations in Table 4 do not bound absolute bias; a systematic bias in the high-throughput region could shift RAG-Stack points and inflate the reported 52.5%/153.2% gains. Please compute hypervolume from measured throughput for every non-dominated RAG-Stack point, report per-seed error bars and signed bias, and state precisely which point
- [§7.1 Baseline system space; §7.2] The baseline search space is not the same as RAG-Stack's. Baselines search algorithm space plus only 8 deployment presets × 6 batch presets, 'expert-curated to be strong on SysA,' while RAG-CM exhaustively searches the full system space in Table 1 for each algorithm configuration. Thus part of the end-to-end gain may come from RAG-CM's larger system design space rather than RAG-PE's algorithm search, even though both sides search the same algorithm space. The optimizer ablation (Fig. 9) controls for this by holding RAG-CM fixed, but the §7.2 claim is presented as end-to-end. Please use the same system space for baselines or decompose the gain into the optimizer's contribution and the system-space search's contribution.
- [§6.1.2; §7.5] The HNSW workload predictor relies on g-hat trained on synthetic high-LID data plus a per-corpus scalar c_M obtained by calibration. The manuscript does not specify how c_M is calibrated, whether calibrating requires building/running the target corpus index, or how robust predictions are to c_M. Since the transfer headline (182.2%) uses a calibrated variant on SysB, while the uncalibrated variant yields 108.4%, the calibration protocol and its cost materially affect the transfer claim. Please provide the calibration procedure, its cost, and a sensitivity analysis.
minor comments (5)
- [§6.1.2] 'Amsaleg MLE' is mentioned without a citation; please add one.
- [Fig. 3] The right panel's 'median QPS ratio' is not fully defined; specify whether ratios are medians of per-config ratios or ratio of medians, and define the IQR error bars.
- [Fig. 11] The legend labels 'Pool win' and 'Forced Init' are unclear; add definitions or a caption explanation.
- [Table 3] The RAG-Stack MS MARCO runtime has a large standard deviation (±1.79 h); please comment on the source of this variance.
- [§8] The trace-driven limitation for agentic RAG is acknowledged; consider scoping the abstract's 'without deploying every candidate' claim to sequential RAG or quantifying agentic coverage in the evaluation.
Circularity Check
One calibrated per-corpus constant in RAG-CM is fitted to target-corpus measurements, so a portion of the HNSW 'prediction' is an input; however, the core optimizer and system-space search remain independent.
-
fitted input called prediction
[Section 6.1.2 (Graph Indices)]
"Concretely, the HNSW operator model estimates ˆn_dis = c_M ˆg_dis(z) and ˆn_hops = ˆg_hops(z) with feature vector z=(d,M,ef_s,LID): a learned predictor ˆg emits the workload counts ˆn=(ˆn_dis, ˆn_hops), and a factor c_M obtained through one-time per-corpus calibration fixes the scale of ˆn_dis."
c_M is a per-corpus scalar obtained by calibrating to measured data on the target corpus. It fixes the absolute scale of n_dis, so HNSW latency/QPS predictions inherit a fitted constant from the same corpus the model is asked to predict. Table 4 reports MAPE for the calibrated model, so the accuracy claim is not an out-of-sample test of the uncalibrated predictor. The fitted scale does not drive within-corpus ordering (Spearman is preserved), but it does set absolute throughput and influences cross-index frontier placement, so the 'prediction' is partially fitted to its target.
full rationale
No definitional equivalence or self-citation chain forces the main result. RAG-PE is a standard MOBO loop with stage-guided candidates; RAG-IR is a workload abstraction; and RAG-CM's analytical layers (roofline, Amdahl, communication, discrete-event assembly) are independent of the target Pareto frontier. The only fitted input that leaks target data into a 'prediction' is the HNSW per-corpus scale c_M (and analogously the IVF imbalance factor f), which are calibrated on measured per-query work. This is disclosed and affects absolute scale more than configuration ordering, so it is a partial, not total, circularity. Separately, the end-to-end comparison in Sec. 7.2 computes hypervolume from RAG-CM-predicted throughput for most RAG-Stack points while baselines are measured; that is a validity/fairness risk rather than a circular derivation, and it is not scored here as a circular step.
Assumptions & free parameters
free parameters (5)
- c_M (HNSW scan-count calibration factor) =
per-corpus calibration, exact values in artifact
- f (IVF cell-imbalance factor) =
measured from built index per (corpus, embedding)
- g_dis / g_hops gradient-boosted regressor weights =
trained on synthetic data, exact weights in artifact
- LID (local intrinsic dimensionality) estimate =
Amsaleg MLE on a query sample
- RAG-CM hardware tuning / calibration constants =
e.g., T_ovh, pi_eff, beta_eff per hardware
assumptions (5)
- domain assumption System parameters do not affect answer quality (I_Q subseteq I_P split).
- domain assumption The GP+LogNEHVI acquisition and the mixed Matérn/Hamming kernel provide an adequate surrogate over the hierarchical conditional RAG space.
- domain assumption RAGAS answer correctness, context recall/precision and faithfulness, scored by DeepSeek-V4-Flash, is a valid quality objective and valid stage diagnostics.
- domain assumption Saturated closed-loop serving with fixed concurrency is the right performance model for RAG deployment comparison.
- domain assumption The discrete-event simulation captures continuous batching, prefix caching, decoupled batch limits and shared-resource contention faithfully.
invented entities (3)
-
RAG-IR workload representation (workflow schema + per-request execution DAG)
independent evidence
-
HNSW workload predictor g-hat with LID feature
independent evidence
-
Agentic analyzer (sub-metric based candidate generator)
Cite this review
Pith. "Pith review of RAG-Stack: Co-Optimizing RAG Serving Performance and Quality." pith.science (2026). https://pith.science/paper/UDZ6WVSF
@misc{pith2026260803487,
author = {Pith},
title = {Pith review of: RAG-Stack: Co-Optimizing RAG Serving Performance and Quality},
year = {2026},
howpublished = {\url{https://pith.science/paper/UDZ6WVSF}},
note = {Machine review of arXiv:2608.03487}
}
read the original abstract
Retrieval-augmented generation (RAG), which augments large language model (LLM) generation with information retrieved from databases, has become a widely used approach for knowledge-intensive applications. Modern RAG systems, however, expose many configuration choices, such as retrieval indexes, model selections, and how models invoke retrieval. Each configuration yields a different trade-off between answer quality and serving performance, making it challenging to choose the optimal setting for a specific application deployment. We present RAG-Stack, a framework for efficiently discovering quality-performance Pareto frontiers across diverse RAG applications and serving systems. RAG-Stack consists of RAG-PE, an iterative design-space exploration algorithm that selects the next RAG configuration to evaluate; RAG-IR, a workload abstraction for diverse RAG algorithms; and RAG-CM, a performance model that predicts the optimal deployment and serving performance on the given hardware. Together, these components allow RAG-Stack to search the joint algorithm-system configuration space without deploying every candidate and to transfer an existing Pareto frontier to a new serving system. Given the same number of optimization iterations across diverse datasets, the Pareto frontiers found by RAG-Stack cover 52.5% to 153.2% more of the normalized quality-performance space than those found by state-of-the-art configuration-search methods evaluated over the same RAG design space.
Figures
Figures from the paper (7 more)
Reference graph
Works this paper leans on
-
[1]
Algorithmicsuperintelligence/Openevolve
2026. Algorithmicsuperintelligence/Openevolve. Algorithmic SuperIntelligence Labs
2026
-
[2]
FlagOpen/FlagEmbedding
2026. FlagOpen/FlagEmbedding. FlagOpen
2026
- [3]
-
[4]
Sebastian Ament, Samuel Daulton, David Eriksson, Maximilian Balandat, and Eytan Bakshy. 2025. Unexpected Improvements to Expected Improve- ment for Bayesian Optimization. https://doi.org/10.48550/arXiv.2310.20708 arXiv:2310.20708 [cs]
-
[5]
Akari Asai, Timo Schick, Patrick Lewis, Xilun Chen, Gautier Izacard, Sebastian Riedel, Hannaneh Hajishirzi, and Wen-tau Yih. 2023. Task-Aware Retrieval with Instructions. InFindings of the Association for Computational Linguistics: ACL 2023, Anna Rogers, Jordan Boyd-Graber, and Naoaki Okazaki (Eds.). Association for Computational Linguistics, Toronto, Can...
-
[6]
Akari Asai, Zeqiu Wu, Yizhong Wang, Avirup Sil, and Hannaneh Hajishirzi. 2023. Self-RAG: Learning to Retrieve, Generate, and Critique through Self-Reflection. https://doi.org/10.48550/arXiv.2310.11511 arXiv:2310.11511 [cs]
-
[7]
Raul Astudillo and Peter Frazier. 2019. Bayesian Optimization of Composite Functions. InProceedings of the 36th International Conference on Machine Learning. PMLR, 354–363
work page 2019
-
[8]
Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, Binyuan Hui, Luo Ji, Mei Li, Junyang Lin, Runji Lin, Dayiheng Liu, Gao Liu, Chengqiang Lu, Keming Lu, Jianxin Ma, Rui Men, Xingzhang Ren, Xuancheng Ren, Chuanqi Tan, Sinan Tan, Jianhong Tu, Peng Wang, Shijie Wang, Wei Wang, Shengguang Wu, Benfeng X...
Show all 82 references
- [9]
-
[10]
Maximilian Balandat, Brian Karrer, Daniel Jiang, Samuel Daulton, Ben Letham, Andrew G Wilson, and Eytan Bakshy. 2020. BoTorch: A Framework for Efficient Monte-Carlo Bayesian Optimization. InAdvances in Neural Information Processing Systems, Vol. 33. Curran Associates, Inc., 21...
2020
- [11]
- [12]
-
[13]
Maciej Besta, Lorenzo Paleari, Jia Hao Andrea Jiang, Robert Gerstenberger, You Wu, Jón Gunnar Hannesson, Patrick Iff, Ales Kubicek, Piotr Nyczyk, Diana Khimey, Nils Blach, Haiqiang Zhang, Tao Zhang, Peiran Ma, Grzegorz Kwaśniewski, Marcin Copik, Hubert Niewiadomski, and Torste...
2025 doi
-
[14]
Hans-Georg Beyer and Hans-Paul Schwefel. 2002. Evolution Strategies – A Comprehensive Introduction.Natural Computing1, 1 (March 2002), 3–52. https://doi.org/10.1023/A:1015059928466
2002 doi
-
[15]
Jianlyu Chen, Shitao Xiao, Peitian Zhang, Kun Luo, Defu Lian, and Zheng Liu
-
[16]
Jian Chen, Peilin Zhou, Yining Hua, Loh Xin, Kehui Chen, Ziyuan Li, Bing Zhu, and Junwei Liang. 2024. FinTextQA: A Dataset for Long-form Financial Question Answering. InProceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Pape...
2024 doi
- [17]
-
[18]
K. Deb, A. Pratap, S. Agarwal, and T. Meyarivan. 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II.IEEE Transactions on Evolutionary Computation6, 2 (April 2002), 182–197. https://doi.org/10.1109/4235.996017
2002
- [19]
-
[20]
Shahul Es, Jithin James, Luis Espinosa Anke, and Steven Schockaert. 2024. RAGAs: Automated Evaluation of Retrieval Augmented Generation. InProceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics: System Demonstrations, Nikola...
2024 doi
- [21]
- [22]
- [23]
- [24]
- [25]
- [26]
-
[27]
Le, Yonghui Wu, and Zhifeng Chen
Yanping Huang, Youlong Cheng, Ankur Bapna, Orhan Firat, Mia Xu Chen, Dehao Chen, HyoukJoong Lee, Jiquan Ngiam, Quoc V. Le, Yonghui Wu, and Zhifeng Chen. 2019. GPipe: Efficient Training of Giant Neural Networks Using Pipeline Parallelism. https://doi.org/10.48550/arXiv.1811.069...
-
[28]
Pooyan Jamshidi, Miguel Velez, Christian Kästner, and Norbert Siegmund. 2018. Learning to Sample: Exploiting Similarities across Environments to Learn Per- formance Models for Configurable Systems. InProceedings of the 2018 26th ACM Joint Meeting on European Software Engineeri...
2018
-
[29]
Herve Jégou, Matthijs Douze, and Cordelia Schmid. 2011. Product Quantization for Nearest Neighbor Search.IEEE Transactions on Pattern Analysis and Machine Intelligence33, 1 (Jan. 2011), 117–128. https://doi.org/10.1109/TPAMI.2010.57
2011 doi
- [30]
- [31]
-
[32]
Wenqi Jiang, Shuai Zhang, Boran Han, Jie Wang, Bernie Wang, and Tim Kraska
-
[33]
Jiajie Jin, Yutao Zhu, Guanting Dong, Yuyao Zhang, Xinyu Yang, Chenghao Zhang, Tong Zhao, Zhao Yang, Zhicheng Dou, and Ji-Rong Wen. 2025. FlashRAG: A Modular Toolkit for Efficient Retrieval-Augmented Generation Research. InCompanion Proceedings of the ACM on Web Conference 202...
2025
- [34]
-
[35]
Kirthevasan Kandasamy, Gautam Dasarathy, Jeff Schneider, and Barnabas Poczos
- [36]
-
[37]
Junkyum Kim and Divya Mahajan. 2026. VectorLiteRAG: Latency- Aware and Fine-Grained Resource Partitioning for Efficient RAG. https://doi.org/10.48550/arXiv.2504.08930 arXiv:2504.08930 [cs]
2026 doi
-
[38]
J. Knowles. 2006. ParEGO: A Hybrid Algorithm with on-Line Landscape Approximation for Expensive Multiobjective Optimization Problems. IEEE Transactions on Evolutionary Computation10, 1 (Feb. 2006), 50–66. https://doi.org/10.1109/TEVC.2005.851274
2006
-
[39]
Akshay Kudva, Wei-Ting Tang, and Joel A. Paulson. 2026. Multi-Objective Bayesian Optimization for Networked Black-Box Systems: A Path to Greener Profits and Smarter Designs. https://doi.org/10.48550/arXiv.2502.14121 arXiv:2502.14121 [stat]
2026 doi
-
[40]
Gonzalez, Hao Zhang, and Ion Stoica
Woosuk Kwon, Zhuohan Li, Siyuan Zhuang, Ying Sheng, Lianmin Zheng, Cody Hao Yu, Joseph E. Gonzalez, Hao Zhang, and Ion Stoica. 2023. Efficient Memory Management for Large Language Model Serving with PagedAttention. https://doi.org/10.48550/arXiv.2309.06180 arXiv:2309.06180 [cs.LG]
-
[41]
Jiale Lao, Yibo Wang, Yufei Li, Jianping Wang, Yunjia Zhang, Zhiyuan Cheng, Wanghu Chen, Mingjie Tang, and Jianguo Wang. 2025. GPTuner: An LLM- Based Database Tuning System.SIGMOD Rec.54, 1 (April 2025), 101–110. https://doi.org/10.1145/3733620.3733641
2025
-
[42]
Julien-Charles Lévesque, Audrey Durand, Christian Gagné, and Robert Sabourin
-
[43]
Patrick Lewis, Ethan Perez, Aleksandra Piktus, Fabio Petroni, Vladimir Karpukhin, Naman Goyal, Heinrich Küttler, Mike Lewis, Wen-tau Yih, Tim Rocktäschel, Sebastian Riedel, and Douwe Kiela. 2020. Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. InProceedings o...
2020
-
[44]
Shen Li, Yanli Zhao, Rohan Varma, Omkar Salpekar, Pieter Noordhuis, Teng Li, Adam Paszke, Jeff Smith, Brian Vaughan, Pritam Damania, and Soumith Chintala
-
[45]
Shaobo Li, Yirui Zhou, Yuan Xu, Kevin Chen, Daniel Waddington, Swaminathan Sundararaman, Hubertus Franke, and Jian Huang. 2026. RAGPerf: An End-to-End Benchmarking Framework for Retrieval-Augmented Generation Systems. https://doi.org/10.48550/arXiv.2603.10765 arXiv:2603.10765 [cs.PF]
2026 doi
-
[46]
In 2017 International Joint Conference on Neural Networks (IJCNN)
Bayesian Optimization for Conditional Hyperparameter Spaces. In 2017 International Joint Conference on Neural Networks (IJCNN). 286–293. https://doi.org/10.1109/IJCNN.2017.7965867
2017
-
[47]
Ning Liang, Fabian Wenz, Jana Giceva, and Lisa Wu Wills. 2025. Athena: A Plug-and-Play Advisor for Retrieval-Augmented Generation Using VectorDB. In 2025 IEEE International Symposium on Workload Characterization (IISWC). 28–41. https://doi.org/10.1109/IISWC66894.2025.00013
2025
-
[48]
Marius Lindauer, Katharina Eggensperger, Matthias Feurer, André Biedenkapp, Difan Deng, Carolin Benjamins, Tim Ruhopf, René Sass, and Frank Hutter
- [49]
-
[50]
Zhichao Lu, Gautam Sreekumar, Erik Goodman, Wolfgang Banzhaf, Kalyanmoy Deb, and Vishnu Naresh Boddeti. 2021. Neural Architecture Transfer.IEEE Transactions on Pattern Analysis and Machine Intelligence43, 9 (Sept. 2021), 2971–2989. https://doi.org/10.1109/TPAMI.2021.3052758
2021
- [51]
- [52]
-
[53]
Miles Olson, Elizabeth Santorella, Louis C. Tiao, Sait Cakmak, Mia Garrard, Samuel Daulton, Zhiyuan Jerry Lin, Sebastian Ament, Bernard Beckerman, Eric Onofrey, Paschal Igusti, Cristian Lara, Benjamin Letham, Cesar Cardoso, Shiyun Sunny Shen, Andy Chenyuan Lin, Matthew Grange,...
2025
-
[54]
Vicky Zhao, Lili Qiu, and Dongmei Zhang
Zhuoshi Pan, Qianhui Wu, Huiqiang Jiang, Menglin Xia, Xufang Luo, Jue Zhang, Qingwei Lin, Victor Rühle, Yuqing Yang, Chin-Yew Lin, H. Vicky Zhao, Lili Qiu, and Dongmei Zhang. 2024. LLMLingua-2: Data Distillation for Efficient and Faithful Task-Agnostic Prompt Compression. InFi...
2024 doi
- [55]
- [56]
- [57]
- [58]
- [59]
-
[60]
Kurt Shuster, Spencer Poff, Moya Chen, Douwe Kiela, and Jason Weston. 2021. Retrieval Augmentation Reduces Hallucination in Conversation. InFindings of the Association for Computational Linguistics: EMNLP 2021, Marie-Francine Moens, Xuanjing Huang, Lucia Specia, and Scott Wen-...
2021 doi
- [61]
-
[62]
Shamane Siriwardhana, Rivindu Weerasekera, Elliott Wen, Tharindu Kalu- arachchi, Rajib Rana, and Suranga Nanayakkara. 2023. Improving the Domain Adaptation of Retrieval Augmented Generation (RAG) Models for Open Domain Question Answering.Transactions of the Association for Com...
2023 doi
-
[63]
Siddhant Ray, Rui Pan, Zhuohan Gu, Kuntai Du, Shaoting Feng, Ganesh Ananthanarayanan, Ravi Netravali, and Junchen Jiang. 2025. METIS: Fast Quality-Aware RAG Systems with Configuration Adaptation. https://doi.org/10.48550/arXiv.2412.10543 arXiv:2412.10543 [cs.LG]
2025 doi
-
[64]
Tu Vu, Mohit Iyyer, Xuezhi Wang, Noah Constant, Jerry Wei, Jason Wei, Chris Tar, Yun-Hsuan Sung, Denny Zhou, Quoc Le, and Thang Luong
-
[65]
Jianguo Wang, Xiaomeng Yi, Rentong Guo, Hai Jin, Peng Xu, Shengjun Li, Xiangyu Wang, Xiangzhou Guo, Chengming Li, Xiaohai Xu, Kun Yu, Yuxing Yuan, Yinghao Zou, Jiquan Long, Yudong Cai, Zhenxiang Li, Zhifeng Zhang, Yihua Mo, Jun Gu, Ruiyi Jiang, Yi Wei, and Charles Xie. 2021. M...
2021
- [66]
- [67]
-
[68]
Artem Babenko Yandex and Victor Lempitsky. 2016. Efficient Indexing of Billion- Scale Datasets of Deep Descriptors. In2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR). 2055–2063. https://doi.org/10.1109/CVPR.2016.226
2016 doi
- [69]
-
[70]
Gyeong-In Yu, Joo Seong Jeong, Geon-Woo Kim, Soojeong Kim, and Byung-Gon Chun. 2022. Orca: A Distributed Serving System for Transformer-Based Generative Models. In16th USENIX Symposium on Operating Systems Design and Implementation (OSDI 22). 521–538
2022
-
[71]
InFindings of the Association for Computational Linguistics: ACL 2024, Lun-Wei Ku, Andre Martins, and Vivek Srikumar (Eds.)
FreshLLMs: Refreshing Large Language Models with Search Engine Augmentation. InFindings of the Association for Computational Linguistics: ACL 2024, Lun-Wei Ku, Andre Martins, and Vivek Srikumar (Eds.). Asso- ciation for Computational Linguistics, Bangkok, Thailand, 13697–13720...
2024 doi
-
[72]
Tianyang Zhang, Zhuoxuan Jiang, Shengguang Bai, Tianrui Zhang, Lin Lin, Yang Liu, and Jiawei Ren. 2024. RAG4ITOps: A Supervised Fine-Tunable and Comprehensive RAG Framework for IT Operations and Maintenance. In Proceedings of the 2024 Conference on Empirical Methods in Natural...
2024 doi
-
[73]
Tao Zhang, Kaixian Qu, Zhibin Li, Jiajun Wu, Marco Hutter, Manling Li, and Fan Shi
- [74]
- [76]
-
[78]
Qingfu Zhang and Hui Li. 2007. MOEA/D: A Multiobjective Evolutionary Algo- rithm Based on Decomposition.IEEE Transactions on Evolutionary Computation 14 11, 6 (Dec. 2007), 712–731. https://doi.org/10.1109/TEVC.2007.892759
2007
- [2017]
- [2020]
- [2022]
-
[2024]
InFindings of the Association for Computational Linguistics: ACL 2024, Lun-Wei Ku, Andre Martins, and Vivek Srikumar (Eds.)
M3-Embedding: Multi-Linguality, Multi-Functionality, Multi-Granularity Text Embeddings Through Self-Knowledge Distillation. InFindings of the Association for Computational Linguistics: ACL 2024, Lun-Wei Ku, Andre Martins, and Vivek Srikumar (Eds.). Association for Computationa...
2024 doi
-
[2025]
InProceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V.1 (KDD ’25)
PipeRAG: Fast Retrieval-Augmented Generation via Adaptive Pipeline Parallelism. InProceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V.1 (KDD ’25). Association for Computing Machinery, New York, NY, USA, 589–600. https://doi.org/10.1145/369062...
- [2026]
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.