AGILE: A Novel Reinforcement Learning Framework of LLM Agents

We introduce a novel reinforcement learning framework of LLM agents named AGILE (AGent that Interacts and Learns from Environments) designed to perform complex conversational tasks with users, leveraging LLMs, memory, tools, and interactions with experts. The agent possesses capabilities beyond conversation, including reflection, tool usage, and expert consultation. We formulate the construction of such an LLM agent as a reinforcement learning (RL) problem, in which the LLM serves as the policy model. We fine-tune the LLM using labeled data of actions and the PPO algorithm. We focus on question answering and release a dataset for agents called ProductQA, comprising challenging questions in online shopping. Our extensive experiments on ProductQA, MedMCQA and HotPotQA show that AGILE agents based on 7B and 13B LLMs trained with PPO can outperform GPT-4 agents. Our ablation study highlights the indispensability of memory, tools, consultation, reflection, and reinforcement learning in achieving the agent's strong performance. Datasets and code are available at https://github.com/bytarnish/AGILE.

Paper

References (56)

Scroll for more · 38 remaining

Similar papers

Peer review

Reviewer b4yX5/10 · confidence 4/52024-07-09

Summary

This paper jointly introduces an evaluation environment for LLM agents and an LLM agent architecture called AGILE. The environments is a Question-Answering environment concerning the characteristics of commercial products sourced from Amazon. The benchmark itself is composed of 3 tasks: 1) a fact retrieval task where the agent should retrieve information about a product, 2) a product query task where the agent should retrieve a product that matches query criteria, and 3) a reasoning task where the agent should reason from the knowledge it has about a product to answer questions about possible uses or suitability of a product. The agent is composed of an LLM backbone that, under the control of an executive module, can retrieve memories of previous interactions stored in its database and use tools. Tools are used for agentic flow (reflect, submit answer), for memory management (retrieve memory, put new memory in database), and for asking advice from a human expert (access to ground truth about a product). The LLM is finetuned with SFT on these tasks. The agent is further fine tuned on a scored version of the tasks with reinforcement learning (PPO). The authors demonstrate the superiority of their architecture on their proposed environment and on a medical QA benchmark over one-shot prompting gpt4, and demonstrate that reflection, tool use, memory, ground truth product advice, and reinforcement learning contribute positively, with varying degrees, to agent performance.

Strengths

* This paper combines known LLM agent modules and studies their impact in two question-answering domains that are of interest to industry practitioners: product recommendation and medical knowledge; * Agents asking for help has been studied at length in the embodied question answering literature with previous-generation agents (see for instance https://arxiv.org/abs/1909.01871 or https://arxiv.org/abs/2302.04865), but as far as I am aware has not been studied with LLM-based agents; * The paper is fairly clear and easy to read, the proposed contributions are easy to understand, examples are provided for the task, and the results are comprehensive; * The claims of the paper are well substantiated with extensive experiments, and the ablations allow to easily disentangle the effect of different components of the agent; * The data collection process for creating the benchmark seems sound and the task looks challenging and interesting; * Reinforcement-Learning studies of complete LLM agents are rare and needed. * The tables in the related work makes the relationship of this work and other previous art clearer.

Weaknesses

* An overarching and pervasive weakness of this paper that is difficult to ignore and that has a great influence on my judgement is the claim of novelty of the agent architecture. In a post-Voyager (https://arxiv.org/abs/2305.16291) world, LLM-based agents equipped with tool use and retrieval are standard and the AGILE agent presented in this work introduces little conceptual novelty in the agent architecture, while even the title of the paper claims that the agent is novel. LLM agents of this type are so much part of the landscape that many reviews exist that organize existing approaches (see for instance the excellent https://arxiv.org/abs/2309.02427 that is not that recent either). The approach is standard enough that advanced software stacks (langchain, llamaindex) are devoted to speeding up building retrieval-augmented generation (RAG)-based agents for industry practitioners. The paper framing should be updated accordingly to reflect that the approach being studied is standard, but applied to a new task. * Relatedly, it would have been important for the authors to exactly pinpoint the difference between their agent and for instance Voyager, and either implement baselines from existing work on their task or test their agent on other tasks (eg WebShop which is very similar in spirit). * There are still novel elements in the proposed approach. The first is the use of reinforcement learning. While the use of reinforcement learning to improve language agents is not novel (see https://arxiv.org/abs/2302.02662 for a textworld task or https://arxiv.org/abs/2403.04642 for a math word task), the use of RL in RAG agents has not been studied as far as I am aware. It also makes up a significant portion of the method section and the appendix, however the experiments demonstrate only a marginal improvement due to RL. Why is this the case? How are the training curves like? Has the training converged? I also do not see any standard deviation information for the RL part. The authors justify the lack of error bars with the computational cost of experiments with is fair and completely acceptable where the comparison between methods is straightforward, but would have been helpful in the sft/ppo comparison where the difference is small and could have been due to chance, and it makes sense to concentrate computational effort on a truly novel part of the contribution; * The other novel element of this paper is the asking for advice part: the model can opt out of the task by seeing the ground truth which it can then report, at a cost (for the RL agent). We can see that allowing this action to the agent increases its accuracy, that increasing the cost of advice results in RL agents using advice less often, and that memoryless agents use advice more often. This is interesting, and could have been a core contribution of the paper, if it were explicit and investigated as such. The conditions under which LLM agents are aware of their own knowledge, as well as them taking appropriate steps to reduce lack of information is a research programme in itself, as has been discussed by John Schulman in his Berkeley lecture in 2023: https://www.youtube.com/watch?v=hhiLw5Q_UFg&t=215s Can the authors predict when the model is going to ask for advice? Does the RL training help the model know what it knows (metacognitive skills)? These are interesting questions that the authors could have investigated; * Relatedly, the related work paragraph on uncertainty looks unfinished. Relevant work on LLM’s metacognitive abilities are cited but there is no word on how the current work contributes to the discussion; * (minor) Time of training and number of gpus required for training should appear after the type of gpu; does the training use lora? * The evaluation for longform answers is based on GPT4, but no evidence is presented to correlate agreement of GPT4 with human judges on this task.

Questions

* My first and most important suggestion is that the authors should change the framing of the paper. The experimental work is sound and the tasks are worthwhile, but in the current state of the paper the conclusions seem to be that RAG agents work better than prompting on question-answering tasks, which is known. However, the paper could be: 1) a study on RL in RAG agent settings, 2) a study on training metacognitive abilities of RAG agents, and/or 3) a paper introducing a new benchmark (but the tasks seem not that challenging compared with tasks like SWE-bench https://www.swebench.com/ or reasoning tasks like theorem proving https://github.com/openai/miniF2F, https://leandojo.org/). * [Conclusion, l305] why is LLM system 1 and interaction with tools system 2? What does it mean? If the claim is to be left in the paper it should be explained and adequate citations should be provided (also is this analogy fruitful? What purpose does it serve? is this a claim about the cognitive plausibility of the proposed agent architecture or its resemblance to humans?). * [Clarity] The paper should explain what mcqa is when first mentioned, since it is confusing for people not familiar with the benchmark. Same goes for the meerkat model. * Why is the improvement from RL only 2%? * The original RAG paper should be cited: https://arxiv.org/abs/2005.11401

Rating

5

Confidence

4

Soundness

3

Presentation

2

Contribution

3

Limitations

* Some limitations with respect to lack of resources are acknowledged in the appendix (small open source models are trained, only a subset of the training set is used). This is fine; the methods used are pretty powerful and can be expected to scale with increasing compute. * If understood as a way to help agents answer queries, expert advice is definitely non-scalable. It is fine as a research question, maybe less so for modelling real-world applications. This could be mitigated with long-term memory of the agent (give advice once, retrieve forever). In any case, a discussion on the feasibility of expert advice in real world scenarios would be nice.

Authorsrebuttal2024-08-06

We sincerely thank you for your effort and valuable comments in reviewing our paper. We appreciate your recognition of our contributions and your insightful feedback. We have addressed these concerns in the Rebuttal Section within the given time constraints to the best of our ability. --- Please let us know if our responses address your concerns. We are grateful for your time and effort in helping us enhance our work.

Authorsrebuttal2024-08-09

Response to additional questions (Part 1)

Thank you for your valuable feedback. We would like to address each of your questions as follows. --- > **Q1:** I also appreciate that you performed additional RL experiments to try and show it helps compared to the strong stf baseline. To make sure I really understand: the original sft policy had 0% [SeekAdvice] rates? And what your new experiment does is start out with higher advice rates and show it leads to more efficient use of human advice (esp when cost of advice falls to 0.1, effectively solving the task by soliciting advice more than half of the time)? **A1:** In all training experiments, we consider three types of SeekAdvice rates: 1) the rate in the SFT training data, 2) the rate predicted by the SFT agent after training, and 3) the rate predicted by the RL agent after training. For both the original and additional experiments, the SeekAdvice rate in the SFT training data (rate 1) is 25%. In the original experiment, GPT-4 makes SeekAdvice decisions. In the additional experiment, these decisions are made randomly but maintain the 25% rate. In the original experiment, the SFT agent (agile-vic13b-sft) predicts SeekAdvice in 25.6% of cases, closely matching the training data. In contrast, in the additional experiment, the SFT agent (agile-vic13b-sft-random) predicts SeekAdvice in only 1.4% of cases. This discrepancy is due to the LLM's greedy decoding. Although it predicts SeekAdvice with logit scores corresponding to a 25% probability, the greedy decoder typically selects other actions with higher logit scores. We also tried random sampling decoding, and the results are attached to the table below. In the original experiment, the RL agent (agile-vic13b-ppo) has a SeekAdvice rate of 23.3%, while in the additional experiment, the RL agent (agile-vic13b-ppo-random) has a rate of 30.6%. The new agent achieves a higher overall score, likely because it starts from a simpler and more general initial policy, allowing PPO to find a better final policy. In contrast, the original agent starts with a strong GPT-4 policy and only makes slight adjustments. When the SeekAdvice cost is reduced to 0.1, PPO training converges to a much more aggressive SeekAdvice rate of 67.1%. This experiment demonstrates that RL training is sensitive to the SeekAdvice cost, always optimizing the policy under specific costs. In contrast, the GPT-4 agent remains insensitive to cost changes, even when the cost is provided as input. The SFT agent is also insensitive since generating optimal SFT data for a given cost is difficult. | | Seeking Advice Cost | [SeekAdvice] Rate in SFT Training Data | Greedy Decoding | Greedy Decoding | Greedy Decoding | Sampling Decoding | Sampling Decoding | Sampling Decoding | |---|---|---|---|---|---|---|---|---| | | | | Advice Rate | Accuracy | Total Score | Advice Rate | Accuracy | Total Score | | agile-vic13b-sft | 0.3 | 0.25 | 0.256 | 0.843 | 0.766 | 0.308 | 0.839 | 0.747 | | agile-vic13b-ppo | 0.3 | - | 0.233 | 0.854 | 0.784 | 0.278 | 0.842 | 0.759 | | agile-vic13b-sft-random | 0.3 | 0.25 | 0.014 | 0.749 | 0.745 | 0.291 | 0.823 | 0.736 | | agile-vic13b-ppo-random | 0.3 | - | 0.306 | 0.89 | 0.798 | 0.363 | 0.896 | 0.787 | | agile-vic13b-sft-random | 0.1 | 0.25 | 0.014 | 0.749 | 0.748 | 0.291 | 0.823 | 0.794 | | agile-vic13b-ppo-random | 0.1 | - | 0.671 | 0.981 | 0.914 | 0.573 | 0.941 | 0.884 | --- > **Q2:** I think nothing prevents researchers to build a Voyager agent (with an open weights model) and perform RL on it right? **A2:** We agree with you that our main contribution is the end-to-end RL formulation and training of LLM agents. In addition, our agent can manage very long trajectories. In the ProductQA task, there could be hundreds of question-answering rounds and could generate very long trajectories yield training sequences that span millions of tokens. To address the challenge, two key capabilities are necessary: 1) Some actions can erase or modify the context to prevent the context from infinitely extending and unmanageable for the LLM; 2) session-level RL training. These challenges cannot be resolved simply by applying PPO training on Voyager-like agents. We discuss the solutions to these issues in our work.

Authorsrebuttal2024-08-09

Response to additional questions (Part 2)

> **Q3:** I also appreciate that you emphasize that you build a new task, but from what I can see it doesn't seem very hard since agents (with quite standard architecture, again I think the type of agent you implement is quite common, see also https://arxiv.org/abs/2304.03442) based on 13b models, without RL or search, are able to solve most of it. That's why I was calling for evaluations on other datasets, to be able to compare. (ReAct is not a very strong baseline). I appreciate your new experiments on HotpotQA, and would be interested to know how it compares to the SotA listed in the benchmark homepage (in terms of metrics), and how you implemented advice in the case of this dataset. **A3:** Thanks for your comments. 1. Experiment implementation. In the HotPotQA task, the agent has the option to either use search tools, seek advice, or directly predict an answer. If the agent chooses to use search tools, it generates a search query to retrieve relevant information, which is then appended to the agent's context. If the agent seeks advice, it obtains a human answer (ground-truth answer in our setting). 2. Comparison to SoTA listed in the benchmark homepage. Thank you for your reminder. We will include the SoTA results in our results table. However, we want to highlight two key differences between our AGILE agent and the methods on the leaderboard: - Our agent uses an external retrieval tool that returns the most relevant document based on a query. This retriever is the same as the one we used for ProductQA and MedicalQA and is not fine-tuned on the HotpotQA dataset. During training, we focus solely on training the LLM of the agent. In contrast, the top five systems on the leaderboard [1,2,3] (except the second one, which lacks a reference link) all train task-specific retrieval models on the 90K HotpotQA training examples. Training such models significantly boost accuracy, and these works claim it as their main technical contribution. Our paper primarily studies the training of LLMs and treats external tools as black boxes, so using a task-independent retriever aligns better with our objectives. - The top systems on the leaderboard [1,2,3] train separate answer extraction models to extract answers from document spans. Our agent directly generates answers from the LLM. While the generative nature may lower exact match (EM) accuracy, we believe it enhances simplicity and generalizability. Besides EM accuracy, we also calculated a GPT-4 accuracy where answers are compared for correctness, recognizing (USA, United States) as correct. As shown in the table below, our system's actual accuracy is much higher than the EM accuracy. Regarding baselines, we noted the original ReAct baseline's implementation in [4] was suboptimal. We reproduced their results using GPT-4, leading to improved performance. In the table below, we also provide results of other works that use the same experimental setting as ours (using a black-box retrieval tool and generative answers). Our system's overall performance surpasses all these baselines. | Method | Advice Rate | Accuracy (Exact match) | Accuracy (GPT-4 Evaluator) | Total Score (Exact match) | |---|---|---|---|---| | ReAct [4] | - | 0.351 | - | - | | ReAct (gpt-4) | - | 0.482 | - | - | | CRITIC [5] | - | 0.443 | - | - | | Expel [6] | - | 0.390 | - | - | | AutoAct [7] | - | 0.384 | - | - | | agile-gpt4-prompt | 0.194 | 0.664 | 0.842 | 0.567 | | agile-vic13b-w/o Advice | 0.000 | 0.553 | 0.751 | 0.553 | | agile-vic13b-w/o RL | 0.171 | 0.668 | 0.857 | 0.617 | | agile-vic13b-ppo (ours) | 0.156 | 0.675 | 0.858 | 0.628 | | Supervised SoTA [1] | - | 0.727 | - | - | [1] J. Zhang, et al. End-to-End Beam Retrieval for Multi-Hop Question Answering, NAACL 2024. [2] Z. Yin, et al. Rethinking label smoothing on multi-hop question answering, CCL 2023. [3] XY. Li, et al. From easy to hard: Two-stage selector and reader for multi-hop question answering, ICASSP 2023. [4] S. Yao, et al. ReAct: Synergizing reasoning and acting in language models, ICLR 2023. [5] Z. Gou, et al. CRITIC: Large Language Models Can Self-Correct with Tool-Interactive Critiquing, ICLR 2024. [6] A. Zhao, et al. Expel: Llm agents are experiential learners, AAAI 2024. [7] S. Qiao, et al. AutoAct: Automatic Agent Learning from Scratch for QA via Self-Planning, ACL 2024.

Authorsrebuttal2024-08-12

Dear Reviewer b4yX, Thank you for taking the time to review our manuscript. We sincerely appreciate your insightful feedback. As the deadline for the discussion phase nears, we would like to kindly remind you of our recent response, in which we diligently addressed the concerns you raised and provided detailed explanations. Should you have any further questions or require additional clarifications, we would be eager to address them promptly. Thanks again for your valuable feedback.

Reviewer b4yX2024-08-13

Thank you for your thorough response! In light of the new experiments and additional data, i find that some of my concerns have been addressed. This paper: * introduces a long-horizon task that has real-world relevance, in which one can ask for expert advice; * introduces a RL formulation (and training algorithm) for LLM-agents; * shows that traditional LLM agent components help solve the task (known); * shows that RL training help solving the task, and, importantly, that RL training allows the agent to ask for advice when it is not able to solve the task, which leads to high scores when the cost of advice is low; * implements and tests the agent on HotPotQA where it achieves scores competitive with specialized baselines. I am still concerned that RL training seems not so effective and that large-scale, cheap advice is an unrealistic scenario, but the agent learning to defer when it doesn't know the answer, as well as the experiments on HotpotQA have convinced me to raise my score. I would also kindly request that the formulation of the paper is amended to reflect the exact components of the method that are novel.

Authorsrebuttal2024-08-14

We really appreciate your thoughtful feedback and recognition of our work's contributions. We are grateful for the improved score, which is truly encouraging. Your constructive feedback helped us enhance our work, and we will certainly integrate your suggestions into our revised version. In response to your concerns about the effectiveness of RL training, we would like to highlight two key advantates: 1. RL training enables the discovery of a better policy compared to the one obtained from SFT training alone. 2. RL training is particularly sensitive to the SeekAdvice cost, optimizing the policy according to specific costs, whereas SFT training is insensitive since generating optimal SFT data for different cost is difficult. Thank you again for your effort and valuable feedback, which helped us improve our paper.

Reviewer xRs26/10 · confidence 4/52024-07-12

Summary

This work presents a novel framework for LLM agents named AGILE. The entire AGILE system is trained end-to-end using reinforcement learning. A key feature of AGILE is its ability to seek advice from external human experts. Additionally, the authors have developed ProductQA, a challenging dataset of complex QA, to comprehensively evaluate the capabilities of the agent. Extensive experiments show that an agent within this framework, even when based on a smaller model and trained with RL, can outperform GPT-4.

Strengths

1. The paper introduces a novel framework, AGILE, for LLM agents that integrates memory, tools, and expert consultations, all optimized through reinforcement learning. 2. The development of the ProductQA dataset. 3. The paper is well-organized and clearly written. The architecture and workflow of the AGILE framework are explained with clarity. 4. The experiments on ProductQA and MedMCQA verify the AGILE framework and show that AGILE agents based on 13B and 7B LLMs trained with PPO can surpass GPT-4 agents.

Weaknesses

1. It is somewhat like WebGPT (in terms of actions and policy learning strategy), with extensions supporting memory, expert consultation, and reflection. 2. The experiments are all related to a single agent. It would be better to show the application for multiple agents and include planning.

Questions

1. How can this framework be extended to support multiple agents? 2. In Table 5, the accuracy of "w/o Memory" and "w/o Tool-Use" is higher than that of agile-vic13b-ppo. Is the metric "Accuracy – Advice Rate" a more straightforward one than Total Score?

Rating

6

Confidence

4

Soundness

3

Presentation

4

Contribution

3

Limitations

The authors have addressed the limitations.

Reviewer ZJZM7/10 · confidence 4/52024-07-13

Summary

This paper proposes AGILE, a reinforcement-learning based framework for finetuning LLMs for conversational QA tasks. The models are initially trained using imitation learning, then further finetuned with RL. Once finetuned, the models show strong performance, surpassing GPT-4 while using much smaller models.

Strengths

- The proposed framework is interesting and novel, distilling the usage of various tools, reflection, memory retrieval/writing, and human advice seeking from larger models' trajectories, to a smaller model, then further training it using RL to surpass the performance of the larger model - The performance is strong - Introduces a new dataset, ProductQA which is a useful resource for conversational QA in online shopping scenarios. - Cost-benefit analysis of advice seeking is insightful.

Weaknesses

I only have two main concerns: - Because the model is only evaluated on two conversational QA datasets (and not on any of the mentioned datasets in Table 8), it's difficult to judge the generality of the proposed method. - There is no comparison with standard ppo

Questions

What is the reason behind why there is not comparison with rl finetuning baseline (standard ppo)?

Rating

7

Confidence

4

Soundness

3

Presentation

3

Contribution

3

Limitations

yes

Reviewer 5wwv4/10 · confidence 4/52024-07-17

Summary

The paper "AGILE: A Novel Framework of LLM Agents" introduces a new framework for Large Language Model (LLM) agents designed to handle complex conversational tasks. The framework, named AGILE (AGent that Interacts and Learns from Environments), incorporates LLMs, memory, tools, and interactions with experts. AGILE is formulated as a reinforcement learning (RL) problem and is fine-tuned using Proximal Policy Optimization (PPO). The authors present a new dataset, ProductQA, for evaluating the framework and report that AGILE agents outperform GPT-4 in their experiments. The paper claims significant improvements in performance due to the integration of memory, tools, expert consultation, and RL training.

Strengths

**Comprehensive Evaluation:** The creation of the ProductQA dataset and the extensive experiments conducted on both ProductQA and MedMCQA provide a robust evaluation of the framework’s capabilities. **Significant Performance Improvements:** The reported improvements over GPT-4 agents in both ProductQA and MedMCQA are noteworthy, indicating the effectiveness of the AGILE framework. **Detailed Methodology:** The paper provides a thorough explanation of the RL formulation, training processes, and the roles of different components within the framework, which enhances reproducibility.

Weaknesses

**Limited Novelty:** The reliance on human experts for advice, while useful, is not a novel concept and has been explored in previous works and becomes a common practice. The paper does not sufficiently differentiate its approach to human expert interaction from existing methods. - Xiao, H. and Wang, P., 2023. Llm a*: Human in the loop large language models enabled a* search for robotics. arXiv preprint arXiv:2312.01797. - https://python.langchain.com/v0.1/docs/use_cases/tool_use/human_in_the_loop/ **Scalability Concerns:** The scalability of AGILE with more complex environments is not addressed. It is unclear how well the framework would perform with task complexity.

Questions

**Benchmark Selection:** Why were ProductQA and MedMCQA specifically chosen as the benchmarks for this study? Are there other benchmarks where AGILE could be tested to validate its generalizability? **Human Expert Advice:** Is there a ground truth for when the agent needs to seek advice, and how is this optimized? **Memory Component:** Can you provide more details on how the memory component scales with an increasing number of interactions and how it ensures efficient retrieval of relevant information?

Rating

4

Confidence

4

Soundness

2

Presentation

2

Contribution

2

Limitations

See weakness

Authorsrebuttal2024-08-06

We sincerely appreciate your effort and valuable comments in reviewing our paper. Your recognition of our contributions and your insightful feedback are greatly valued. We have addressed your concerns in the Rebuttal Section to the best of our ability within the given time constraints. --- Please let us know if our responses satisfactorily address your concerns. We are grateful for your time and effort in helping us improve our work.

Authorsrebuttal2024-08-12

Dear Reviewer 5wwv, We sincerely appreciate the time and effort you have invested in reviewing our manuscript. As the deadline of the discussion phase approaches, we would like to kindly remind you of our rebuttal, which addresses each concern you raised in your feedback. If you have any further questions or concerns, we would be happy and eager to address them promptly in the discussion period. Thank you once again for your valuable feedback.

Reviewer b4yX2024-08-08

Additional questions

I thank you for your reply, that answers some of my questions. I am especially happy that you took the time to perform several seeds of the RL experiments (the results are much more robust now) and that you performed comparison with humans judgements in the answer to Q7 (I now trust the results of evaluations). I also appreciate that you performed additional RL experiments to try and show it helps compared to the strong stf baseline. To make sure I really understand: the original sft policy had 0% [SeekAdvice] rates? And what your new experiment does is start out with higher advice rates and show it leads to more efficient use of human advice (esp when cost of advice falls to 0.1, effectively solving the task by soliciting advice more than half of the time)? As to your remark: > A2: Agents like Voyager are based on prompt engineering I think nothing prevents researchers to build a Voyager agent (with an open weights model) and perform RL on it right? I also appreciate that you emphasize that you build a new task, but from what I can see it doesn't seem very hard since agents (with quite standard architecture, again I think the type of agent you implement is quite common, see also https://arxiv.org/abs/2304.03442) based on 13b models, without RL or search, are able to solve most of it. That's why I was calling for evaluations on other datasets, to be able to compare. (ReAct is not a very strong baseline). I appreciate your new experiments on HotpotQA, and would be interested to know how it compares to the SotA listed in the benchmark homepage (in terms of metrics), and how you implemented advice in the case of this dataset.

Reviewer ZJZM2024-08-13

Response to authors

Thank you to the authors for the additional results. This response addressed my concerns.

Senior Area Chairs2024-08-13

Dear reviewers, The discussion period will end soon. If you haven't responded to the authors' rebuttal, please do so and kick off the discussion. Best, SACa

Reviewer xRs22024-08-13

Thank the authors for the detailed response.

Program Chairsdecision2024-09-25

Decision

Accept (poster)

© 2026 NYSGPT2525 LLC