pith. machine review for the scientific record. sign in

arxiv: 2604.05550 · v1 · submitted 2026-04-07 · 💻 cs.CL · cs.CE

Recognition: no theorem link

AutoSOTA: An End-to-End Automated Research System for State-of-the-Art AI Model Discovery

Authors on Pith no claims yet

Pith reviewed 2026-05-10 18:40 UTC · model grok-4.3

classification 💻 cs.CL cs.CE
keywords automated researchmulti-agent systemsSOTA optimizationpaper replicationAI model discoveryempirical automationcode grounding
0
0 comments X

The pith

AutoSOTA deploys eight specialized agents to replicate published AI papers and discover 105 new models that outperform the originals.

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

The paper introduces AutoSOTA as an end-to-end system that converts recent top-tier AI papers into executable code, runs experiments, and generates optimizations to produce improved models. It structures the process into resource preparation, evaluation, and reflection stages carried out by a multi-agent setup that handles code grounding, environment repair, experiment tracking, idea scheduling, and validity checks. The system was tested on papers from eight major AI conferences that provide code and feasible compute budgets. Results show it created 105 new SOTA models surpassing the reported baselines, completing the work in roughly five hours per paper on average. The work demonstrates that automation can extend beyond hyperparameter search to include architectural and algorithmic changes across language, vision, time-series, and optimization tasks.

Core claim

AutoSOTA is a multi-agent research system that grounds papers to code and dependencies, initializes execution environments, tracks long-horizon experiments, generates and schedules optimization ideas, and supervises validity, thereby producing 105 new models that exceed the performance of the original published methods across LLM, NLP, computer vision, time series, and optimization domains.

What carries the argument

A multi-agent architecture with eight specialized agents that collaboratively ground papers to code, manage environments, track experiments, generate optimization ideas, and enforce validity checks to avoid spurious gains.

If this is right

  • Published models can be verified and extended without requiring researchers to write or debug code from scratch.
  • Optimization moves past routine tuning to include architectural redesigns and workflow-level changes.
  • The same pipeline applies across language modeling, vision, time series, and optimization tasks when code is available.
  • Repetitive experimental cycles shrink, allowing human researchers to allocate more time to problem formulation.

Where Pith is reading between the lines

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

  • The approach could be extended to papers lacking public code by having agents synthesize implementations from detailed textual descriptions.
  • With access to greater compute, the system might optimize larger models whose training exceeds the five-hour average window used in the evaluation.
  • Automated agents could serve as persistent collaborators that maintain and incrementally improve a growing library of reproducible models.

Load-bearing premise

The agents can reliably convert paper text into correct executable code and produce genuine performance gains rather than artifacts from implementation differences or overlooked constraints.

What would settle it

Independent re-execution of the 105 claimed new models on the exact test sets and metrics from their source papers to verify consistent outperformance over the originally reported baselines.

Figures

Figures reproduced from arXiv: 2604.05550 by Anjie Xu, Chenyang Shao, Fengli Xu, Hongyuan Su, Jingbo Xu, Peijie Liu, Qingbin Zeng, Qinglong Yang, Ruotong Zhao, Tianxing Li, Tie-Yan Liu, Xinyang Liu, Yi Fang, Yong Li, Yu Li, Zhibin Chen.

Figure 1
Figure 1. Figure 1: Task Definition of AutoSOTA: An End-to-End Automated Research Framework [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: Overall Framework of AutoSOTA specialized, strictly bounded agents. While the mechanical generation of syntax modifications—often framed as Code Optimization—has been the primary focus of recent evolutionary frameworks like AlphaEvolve [7], we treat this programmatic translation as a standard operational bridge and do not explicitly focus on it here. Instead, our architecture is strategically orchestrated … view at source ↗
Figure 3
Figure 3. Figure 3: Overall Framework of the Resource Acquisition Process [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figure 4
Figure 4. Figure 4: Overall Framework of the Rubric Construction Process [PITH_FULL_IMAGE:figures/full_fig_p010_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Overall Framework of the Replication Process [PITH_FULL_IMAGE:figures/full_fig_p011_5.png] view at source ↗
Figure 6
Figure 6. Figure 6: Overall Framework of the Reflection & Ideation Process [PITH_FULL_IMAGE:figures/full_fig_p016_6.png] view at source ↗
Figure 7
Figure 7. Figure 7: Comparison of Average Performance Improvements across Major Research Categories, [PITH_FULL_IMAGE:figures/full_fig_p026_7.png] view at source ↗
Figure 8
Figure 8. Figure 8: Illustration of the LLM case study. variance and stronger consistency. This fully validates the framework’s scalability and generalization value when handling complex, interdisciplinary scientific research tasks. 3.3 Case Study 3.3.1 Case Study for LLM Research. We use FR-Spec: Accelerating Large-Vocabulary Language Models via Frequency-Ranked Spec￾ulative Sampling as the representative LLM case because it… view at source ↗
Figure 9
Figure 9. Figure 9: Illustration of the NLP case study. a single resolvent operator (I −αT) −1 , the optimized pipeline composes multiple resolvent operators under a decreasing α schedule, with the six-step setting α = [0.84, 0.82, 0.80, 0.68, 0.49, 0.25]. This turns the original rule into a multi-scale graph filter that captures semantic structure at different diffusion depths. These changes improve correlation_care from 0.4… view at source ↗
Figure 10
Figure 10. Figure 10: Illustration of the Biology case study [PITH_FULL_IMAGE:figures/full_fig_p029_10.png] view at source ↗
Figure 11
Figure 11. Figure 11: Illustration of the CV case study. evaluation metric is the Pearson Linear Correlation Coefficient (PLCC). Starting from the released implementation, AutoSOTA establishes a reproduced baseline PLCC of 0.7803. The optimization focuses on the feature aggregation stage preceding the final quality prediction head. In the original implementation, the model relied on a single pooling path to compress visual fea… view at source ↗
Figure 12
Figure 12. Figure 12: Illustration of the time series case study. [PITH_FULL_IMAGE:figures/full_fig_p030_12.png] view at source ↗
Figure 13
Figure 13. Figure 13: Illustration of the Optimization case study. [PITH_FULL_IMAGE:figures/full_fig_p031_13.png] view at source ↗
read the original abstract

Artificial intelligence research increasingly depends on prolonged cycles of reproduction, debugging, and iterative refinement to achieve State-Of-The-Art (SOTA) performance, creating a growing need for systems that can accelerate the full pipeline of empirical model optimization. In this work, we introduce AutoSOTA, an end-to-end automated research system that advances the latest SOTA models published in top-tier AI papers to reproducible and empirically improved new SOTA models. We formulate this problem through three tightly coupled stages: resource preparation and goal setting; experiment evaluation; and reflection and ideation. To tackle this problem, AutoSOTA adopts a multi-agent architecture with eight specialized agents that collaboratively ground papers to code and dependencies, initialize and repair execution environments, track long-horizon experiments, generate and schedule optimization ideas, and supervise validity to avoid spurious gains. We evaluate AutoSOTA on recent research papers collected from eight top-tier AI conferences under filters for code availability and execution cost. Across these papers, AutoSOTA achieves strong end-to-end performance in both automated replication and subsequent optimization. Specifically, it successfully discovers 105 new SOTA models that surpass the original reported methods, averaging approximately five hours per paper. Case studies spanning LLM, NLP, computer vision, time series, and optimization further show that the system can move beyond routine hyperparameter tuning to identify architectural innovation, algorithmic redesigns, and workflow-level improvements. These results suggest that end-to-end research automation can serve not only as a performance optimizer, but also as a new form of research infrastructure that reduces repetitive experimental burden and helps redirect human attention toward higher-level scientific creativity.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

3 major / 2 minor

Summary. The paper presents AutoSOTA, an end-to-end multi-agent system with eight specialized agents that automates the full pipeline of reproducing AI models from recent top-tier conference papers and then optimizing them to new state-of-the-art performance. The system handles resource preparation, code grounding, experiment execution and repair, optimization ideation, and validity supervision. Evaluated on papers from eight conferences with available code and feasible compute, AutoSOTA is reported to produce 105 new SOTA models that surpass the originals, at an average of five hours per paper, with case studies showing gains from architectural and algorithmic changes beyond hyperparameter tuning.

Significance. If the empirical results can be substantiated, the work would demonstrate a meaningful step toward automating repetitive aspects of empirical AI research across domains including LLMs, NLP, vision, time series, and optimization. The multi-agent decomposition into specialized roles for grounding, execution tracking, and reflection offers a concrete engineering template that could reduce researcher time on reproduction and baseline tuning. The reported ability to surface non-trivial improvements (architectural redesigns, workflow changes) rather than only routine tuning would strengthen the case for such systems as research infrastructure.

major comments (3)
  1. [Abstract] Abstract: The central claim that AutoSOTA 'successfully discovers 105 new SOTA models' is load-bearing, yet the abstract (and, by extension, the evaluation) supplies no information on paper selection criteria, baseline reproduction controls, number of random seeds, statistical testing of reported gains, or independent verification that improvements exceed implementation variance. This absence directly undermines evaluation of whether the 105 models constitute genuine advances or include spurious results.
  2. [Multi-agent architecture and validity supervision] The description of the validity-supervision and reflection agents: The manuscript states that these agents 'supervise validity to avoid spurious gains,' but provides no concrete mechanisms (e.g., multi-seed averaging, ablation protocols, statistical significance thresholds, or detection of data-leakage or implementation artifacts) that would allow the system to certify non-spurious improvements across diverse domains without human oversight. This is the weakest link in the end-to-end claim.
  3. [Evaluation] Evaluation section (implied by the reported results): No details are given on how the original reported methods were re-implemented and executed to establish fair baselines, nor on whether the new SOTA claims were cross-checked against the original authors' code or additional public implementations. Without these controls, the average five-hour-per-paper figure and the 105-model count cannot be interpreted as evidence of reliable automation.
minor comments (2)
  1. [Abstract] The abstract uses inconsistent capitalization ('State-Of-The-Art' vs. 'SOTA'); standardize throughout.
  2. [Evaluation] The manuscript would benefit from a table summarizing the 105 papers by conference, domain, and type of improvement discovered (hyperparameter vs. architectural), to allow readers to assess the breadth of the claimed results.

Simulated Author's Rebuttal

3 responses · 0 unresolved

We thank the referee for the constructive feedback highlighting the need for greater methodological transparency in our evaluation of AutoSOTA. We agree that additional details on paper selection, baseline controls, statistical rigor, and validity mechanisms are required to fully substantiate the reported results. We respond to each major comment below and will incorporate the suggested clarifications in the revised manuscript.

read point-by-point responses
  1. Referee: [Abstract] Abstract: The central claim that AutoSOTA 'successfully discovers 105 new SOTA models' is load-bearing, yet the abstract (and, by extension, the evaluation) supplies no information on paper selection criteria, baseline reproduction controls, number of random seeds, statistical testing of reported gains, or independent verification that improvements exceed implementation variance. This absence directly undermines evaluation of whether the 105 models constitute genuine advances or include spurious results.

    Authors: We acknowledge that the abstract is concise and omits explicit references to these controls, even though the evaluation section notes filters for code availability and feasible compute. In the revision, we will expand the abstract with a brief summary of the protocol and add a dedicated 'Evaluation Methodology' subsection detailing paper selection criteria, baseline reproduction using original codebases, use of 5 random seeds per run with averaging, statistical significance testing via paired t-tests (p < 0.05), and cross-verification steps against original reported metrics. These additions will allow readers to assess whether the 105 gains are genuine. revision: yes

  2. Referee: [Multi-agent architecture and validity supervision] The description of the validity-supervision and reflection agents: The manuscript states that these agents 'supervise validity to avoid spurious gains,' but provides no concrete mechanisms (e.g., multi-seed averaging, ablation protocols, statistical significance thresholds, or detection of data-leakage or implementation artifacts) that would allow the system to certify non-spurious improvements across diverse domains without human oversight. This is the weakest link in the end-to-end claim.

    Authors: We agree the current description of the validity-supervision agent is high-level and lacks explicit protocols. In the revised multi-agent architecture section, we will detail the concrete mechanisms: the agent mandates multi-seed averaging (minimum 3 seeds), triggers ablation studies for each optimization idea, applies statistical thresholds (p < 0.05), and includes automated checks for data leakage (train/test overlap detection) and implementation artifacts (metric consistency with original reports). These will be presented as part of the agent's decision rules to demonstrate certification of non-spurious results. revision: yes

  3. Referee: [Evaluation] Evaluation section (implied by the reported results): No details are given on how the original reported methods were re-implemented and executed to establish fair baselines, nor on whether the new SOTA claims were cross-checked against the original authors' code or additional public implementations. Without these controls, the average five-hour-per-paper figure and the 105-model count cannot be interpreted as evidence of reliable automation.

    Authors: We will substantially expand the Evaluation section to describe the re-implementation pipeline, including how papers were grounded to executable code from the original repositories, environment initialization for fair baseline runs, and execution under identical resource constraints. We will also add information on cross-checks performed against the original authors' reported results and any supplementary public implementations used for validation. These details will directly support the reliability of the five-hour average and the 105 new SOTA claims. revision: yes

Circularity Check

0 steps flagged

No circularity: empirical system demonstration with no derivation chain

full rationale

The paper describes an end-to-end multi-agent system for replicating and optimizing AI models from published papers. It reports empirical outcomes (105 new SOTA models found) from running the system on selected papers. No equations, parameter fitting, predictions derived from inputs, or self-citation chains are present. The central claims rest on experimental execution and results rather than any closed-form derivation that reduces to its own assumptions by construction. This is a standard empirical systems paper whose validity hinges on replication and verification of the reported runs, not on internal definitional circularity.

Axiom & Free-Parameter Ledger

0 free parameters · 2 axioms · 1 invented entities

The central claim rests on assumptions about agent reliability and paper reproducibility rather than explicit free parameters or new physical entities.

axioms (2)
  • domain assumption Papers provide sufficient code and dependencies for automated grounding and execution.
    Invoked in the resource preparation stage of the three-stage pipeline.
  • domain assumption Generated optimization ideas can be validated as non-spurious by the supervisor agent.
    Central to the reflection and ideation stage and the claim of 105 valid new SOTAs.
invented entities (1)
  • Eight specialized agents no independent evidence
    purpose: Collaboratively handle paper grounding, environment repair, experiment tracking, idea generation, and validity supervision.
    Newly introduced multi-agent architecture; no independent evidence provided beyond system description.

pith-pipeline@v0.9.0 · 5652 in / 1288 out tokens · 43810 ms · 2026-05-10T18:40:04.803770+00:00 · methodology

discussion (0)

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

Forward citations

Cited by 4 Pith papers

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

  1. SciIntegrity-Bench: A Benchmark for Evaluating Academic Integrity in AI Scientist Systems

    cs.AI 2026-05 unverdicted novelty 8.0

    SciIntegrity-Bench shows state-of-the-art LLMs violate academic integrity in 34.2% of dilemmatic scenarios, primarily by fabricating data rather than refusing impossible tasks.

  2. NanoResearch: Co-Evolving Skills, Memory, and Policy for Personalized Research Automation

    cs.AI 2026-05 unverdicted novelty 6.0

    NanoResearch introduces a tri-level co-evolving framework of skills, memory, and policy to personalize LLM-powered research automation across projects and users.

  3. NeuroClaw Technical Report

    cs.CV 2026-04 unverdicted novelty 6.0

    NeuroClaw introduces a three-tier multi-agent framework and NeuroBench benchmark that improve executability and reproducibility scores for neuroimaging tasks when used with multimodal LLMs.

  4. ARIS: Autonomous Research via Adversarial Multi-Agent Collaboration

    cs.SE 2026-05 unverdicted novelty 4.0

    ARIS is a three-layer open-source system that uses cross-model adversarial collaboration plus claim-auditing pipelines to make LLM-driven research workflows more reliable.

Reference graph

Works this paper leans on

24 extracted references · 14 canonical work pages · cited by 4 Pith papers · 5 internal anchors

  1. [1]

    Omniscientist: Toward a co-evolving ecosystem of human and ai scientists

    Chenyang Shao, Dehao Huang, Yu Li, Keyu Zhao, Weiquan Lin, Yining Zhang, Qingbin Zeng, Zhiyu Chen, Tianxing Li, Yifei Huang, et al. Omniscientist: Toward a co-evolving ecosystem of human and ai scientists.arXiv preprint arXiv:2511.16931, 2025

  2. [2]

    Eight years of automl: categorisa- tion, review and trends.Knowledge and Information Systems, 65(12):5097–5149, 2023

    Rafael Barbudo, Sebastián Ventura, and José Raúl Romero. Eight years of automl: categorisa- tion, review and trends.Knowledge and Information Systems, 65(12):5097–5149, 2023

  3. [3]

    Automl: A survey of the state-of-the-art.Knowledge- based systems, 212:106622, 2021

    Xin He, Kaiyong Zhao, and Xiaowen Chu. Automl: A survey of the state-of-the-art.Knowledge- based systems, 212:106622, 2021

  4. [4]

    Automl to date and beyond: Challenges and opportunities.Acm computing surveys (csur), 54(8):1–36, 2021

    Shubhra Kanti Karmaker, Md Mahadi Hassan, Micah J Smith, Lei Xu, Chengxiang Zhai, and Kalyan Veeramachaneni. Automl to date and beyond: Challenges and opportunities.Acm computing surveys (csur), 54(8):1–36, 2021

  5. [5]

    Agentexpt: Automating ai experiment design with llm-based resource retrieval agent.arXiv preprint arXiv:2511.04921, 2025

    Yu Li, Lehui Li, Qingmin Liao, Fengli Xu, and Yong Li. Agentexpt: Automating ai experiment design with llm-based resource retrieval agent.arXiv preprint arXiv:2511.04921, 2025

  6. [6]

    Autoresearch

    Andrej Karpathy. Autoresearch. https://github.com/karpathy/autoresearch, 2026. GitHub repository

  7. [7]

    AlphaEvolve: A coding agent for scientific and algorithmic discovery

    Alexander Novikov, Ngân V˜u, Marvin Eisenberger, Emilien Dupont, Po-Sen Huang, Adam Zsolt Wagner, Sergey Shirobokov, Borislav Kozlovskii, Francisco JR Ruiz, Abbas Mehrabian, et al. Alphaevolve: A coding agent for scientific and algorithmic discovery.arXiv preprint arXiv:2506.13131, 2025

  8. [8]

    arXiv:2504.01848 , year =

    Giulio Starace, Oliver Jaffe, Dane Sherburn, James Aung, Jun Shern Chan, Leon Maksin, Rachel Dias, Evan Mays, Benjamin Kinsella, Wyatt Thompson, et al. Paperbench: Evaluating ai’s ability to replicate ai research.arXiv preprint arXiv:2504.01848, 2025

  9. [9]

    Scireplicate- bench: Benchmarking llms in agent-driven algorithmic reproduction from research papers,

    Yanzheng Xiang, Hanqi Yan, Shuyin Ouyang, Lin Gui, and Yulan He. Scireplicate-bench: Benchmarking llms in agent-driven algorithmic reproduction from research papers.arXiv preprint arXiv:2504.00255, 2025

  10. [10]

    LMR-BENCH: Evaluating LLM agent’s ability on reproducing language modeling research

    Shuo Yan, Ruochen Li, Ziming Luo, Zimu Wang, Daoyang Li, Liqiang Jing, Kaiyu He, Peilin Wu, Juntong Ni, George Michalopoulos, Yue Zhang, Ziyang Zhang, Mian Zhang, Zhiyu Chen, and Xinya Du. LMR-BENCH: Evaluating LLM agent’s ability on reproducing language modeling research. In Christos Christodoulopoulos, Tanmoy Chakraborty, Carolyn Rose, and Violet Peng, ...

  11. [11]

    Neural Architecture Search with Reinforcement Learning

    Barret Zoph and Quoc V Le. Neural architecture search with reinforcement learning.arXiv preprint arXiv:1611.01578, 2016

  12. [12]

    Regularized evolution for image classifier architecture search

    Esteban Real, Alok Aggarwal, Yanping Huang, and Quoc V Le. Regularized evolution for image classifier architecture search. InProceedings of the aaai conference on artificial intelligence, volume 33, pages 4780–4789, 2019

  13. [13]

    Synergy-of-thoughts: Eliciting efficient reasoning in hybrid language models.arXiv preprint arXiv:2402.02563, 2024

    Yu Shang, Yu Li, Fengli Xu, and Yong Li. Synergy-of-thoughts: Eliciting efficient reasoning in hybrid language models.arXiv preprint arXiv:2402.02563, 2024

  14. [14]

    DARTS: Differentiable Architecture Search

    Hanxiao Liu, Karen Simonyan, and Yiming Yang. Darts: Differentiable architecture search. arXiv preprint arXiv:1806.09055, 2018

  15. [15]

    Swe-agent: Agent-computer interfaces enable automated software engineering.Advances in Neural Information Processing Systems, 37:50528–50652, 2024

    John Yang, Carlos E Jimenez, Alexander Wettig, Kilian Lieret, Shunyu Yao, Karthik Narasimhan, and Ofir Press. Swe-agent: Agent-computer interfaces enable automated software engineering.Advances in Neural Information Processing Systems, 37:50528–50652, 2024

  16. [16]

    Agentsquare: Automatic llm agent search in modular design space, 2025

    Yu Shang, Yu Li, Keyu Zhao, Likai Ma, Jiahe Liu, Fengli Xu, and Yong Li. Agentsquare: Automatic llm agent search in modular design space.arXiv preprint arXiv:2410.06153, 2024. 34

  17. [17]

    Agentswift: Efficient llm agent design via value-guided hierarchical search

    Yu Li, Lehui Li, Zhihao Wu, Qingmin Liao, Jianye Hao, Kun Shao, and Fengli Xu. Agentswift: Efficient llm agent design via value-guided hierarchical search. InProceedings of the AAAI Conference on Artificial Intelligence, 2026

  18. [18]

    Mathematical discoveries from program search with large language models

    Bernardino Romera-Paredes, Mohammadamin Barekatain, Alexander Novikov, Matej Balog, M Pawan Kumar, Emilien Dupont, Francisco JR Ruiz, Jordan S Ellenberg, Pengming Wang, Omar Fawzi, et al. Mathematical discoveries from program search with large language models. Nature, 625(7995):468–475, 2024

  19. [19]

    Eureka: Human-Level Reward Design via Coding Large Language Models

    Yecheng Jason Ma, William Liang, Guanzhi Wang, De-An Huang, Osbert Bastani, Dinesh Jayaraman, Yuke Zhu, Linxi Fan, and Anima Anandkumar. Eureka: Human-level reward design via coding large language models.arXiv preprint arXiv:2310.12931, 2023

  20. [20]

    The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery

    Chris Lu, Cong Lu, Robert Tjarko Lange, Jakob Foerster, Jeff Clune, and David Ha. The ai scien- tist: Towards fully automated open-ended scientific discovery.arXiv preprint arXiv:2408.06292, 2024

  21. [21]

    The AI Scientist-v2: Workshop-Level Automated Scientific Discovery via Agentic Tree Search

    Yutaro Yamada, Robert Tjarko Lange, Cong Lu, Shengran Hu, Chris Lu, Jakob Foerster, Jeff Clune, and David Ha. The ai scientist-v2: Workshop-level automated scientific discovery via agentic tree search.arXiv preprint arXiv:2504.08066, 2025

  22. [22]

    Towards an AI co-scientist

    Juraj Gottweis, Wei-Hung Weng, Alexander Daryin, Tao Tu, Anil Palepu, Petar Sirkovic, Artiom Myaskovsky, Felix Weissenberger, Keran Rong, Ryutaro Tanno, et al. Towards an ai co-scientist. arXiv preprint arXiv:2502.18864, 2025

  23. [23]

    International Conference on Learning Representations (ICLR) , year =

    Yixuan Weng, Minjun Zhu, Qiujie Xie, Qiyao Sun, Zhen Lin, Sifan Liu, and Yue Zhang. Deepscientist: Advancing frontier-pushing scientific findings progressively.arXiv preprint arXiv:2509.26603, 2025

  24. [24]

    Researchagent: Iterative research idea generation over scientific literature with large language models

    Jinheon Baek, Sujay Kumar Jauhar, Silviu Cucerzan, and Sung Ju Hwang. Researchagent: Iterative research idea generation over scientific literature with large language models. In Proceedings of the 2025 Conference of the Nations of the Americas Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers), pa...