Jiawei Chen
Other people with similar names: Jiawei Chen, Jiawei Chen, Jiawei Chen
Unverified author pages with similar names: Jiawei Chen
2026
CoCoNUTS: Concentrating on Content while Neglecting Uninformative Textual Styles for AI-Generated Peer Review Detection
Yihan Chen | Jiawei Chen | Guozhao Mo | Xuanang Chen | Ben He | Xianpei Han | Le Sun
Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)
Yihan Chen | Jiawei Chen | Guozhao Mo | Xuanang Chen | Ben He | Xianpei Han | Le Sun
Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)
The growing use of large language models (LLMs) in peer review threatens scholarly integrity. Recent conference policies allow AI tools for language polishing but prohibit their use for generating substantive content. However, existing detectors mainly rely on stylistic cues, making it difficult to distinguish between surface-level language refinement and genuine content generation. To address this, we advocate a content-based detection paradigm and introduce CoCoNUTS, a comprehensive benchmark containing 315,535 reviews covering leading AI conferences and six human-AI collaboration modes. Our evaluation shows that current detectors struggle to handle these nuanced settings. Consequently, we propose CoCoDet, an AI review detector designed to identify substantive AI-generation. Experiments demonstrate that CoCoDet achieves a macro F1-score of 98.24%. Crucially, on permissible machine-polished reviews, it maintains a low false positive rate of 3.89%, substantially outperforming the strongest baseline (7.84%). Examination on real-world reviews using CoCoDet reveals an escalating trend of substantive AI generation. Our work exposes the inadequacy of current detectors, underscoring the importance of domain-specific solutions.
MemSearcher: Iterative Memory Integration for Search Agent via End-to-End Reinforcement Learning
Qianhao Yuan | Jie Lou | Zichao Li | Jiawei Chen | Yaojie Lu | Hongyu Lin | Le Sun | Debing Zhang | Xianpei Han
Findings of the Association for Computational Linguistics: ACL 2026
Qianhao Yuan | Jie Lou | Zichao Li | Jiawei Chen | Yaojie Lu | Hongyu Lin | Le Sun | Debing Zhang | Xianpei Han
Findings of the Association for Computational Linguistics: ACL 2026
LLM-based search agents often concatenate the full interaction history into the context, producing long and noisy inputs, and increasing compute cost and GPU memory overhead. To address this issue, we propose MemSearcher, an agent framework that maintains a compact memory during multi-turn interactions, retaining only question-relevant information and thereby keeping the context length stable across turns. Training MemSearcher is challenging because each trajectory spans multiple turns under different LLM contexts, making each turn an independent optimization target in reinforcement learning. We introduce multi-context GRPO, which propagates trajectory-level advantages to all turns for end-to-end optimization. Experiments demonstrate that MemSearcher outperforms strong history-concatenation (ReAct-style) baselines on a range of public datasets while maintaining nearly constant token counts across multi-turn interactions. The code and models will be publicly available at https://github.com/icip-cas/MemSearcher.