Chenyun Yu
2026
Intent-Driven Semantic ID Generation for Grounded Conversational News Recommendation
Hongyang Su | Beibei Kong | Lei Cheng | Chengxiang Zhuo | Zang Li | Chenyun Yu
Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (ACL 2026)
Hongyang Su | Beibei Kong | Lei Cheng | Chengxiang Zhuo | Zang Li | Chenyun Yu
Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (ACL 2026)
Conversational news recommendation requires grounding each suggestion in a rapidly evolving article corpus while addressing implicit user intents that lack explicit retrievable keywords. To characterize this scenario, we identify 6 intent types from production dialogues: five are implicit and pose fundamental challenges to standard RAG pipelines, forming a critical retrieve-first bottleneck. To address these issues, we introduce intent-driven Semantic ID (SID) generation under a Generate-then-Match paradigm. With two-stage training that consists of multi-task SID alignment and GPT-4 Chain-of-Thought distillation, an LLM maps diverse intents to hierarchical SID prefixes, which are then fuzzy-matched to the current news pool to guarantee fully grounded recommendations. Profile-Aware Dual-Signal Reasoning (PADR) further enables cold-start users to obtain valid recommendations using only profiles. On a mainstream Chinese news platform, our 7B model achieves 0% hallucination and 12.4% L1 match in the 152K open-generation SID space (4 × random baseline). It matches GPT-4+Hybrid RAG on L1 while surpassing it on finer-grained metrics (L2 2 ×, Category +1.2pp) at ∼ 100 × lower cost. Cold-start users, where existing baselines score 0%, achieve 18.0% L1 (6 × random), the highest among all user groups.
2024
Decomposition for Enhancing Attention: Improving LLM-based Text-to-SQL through Workflow Paradigm
Yuanzhen Xie | Xinzhou Jin | Tao Xie | Mingxiong Lin | Liang Chen | Chenyun Yu | Lei Cheng | Chengxiang Zhuo | Bo Hu | Zang Li
Findings of the Association for Computational Linguistics: ACL 2024
Yuanzhen Xie | Xinzhou Jin | Tao Xie | Mingxiong Lin | Liang Chen | Chenyun Yu | Lei Cheng | Chengxiang Zhuo | Bo Hu | Zang Li
Findings of the Association for Computational Linguistics: ACL 2024
In-context learning of large-language models (LLMs) has achieved remarkable success in the field of natural language processing, while extensive case studies reveal that the single-step chain-of-thought prompting approach faces challenges such as attention diffusion and inadequate performance in complex tasks like text-to-SQL. To improve the contextual learning capabilities of LLMs in text-to-SQL, a workflow paradigm method is proposed, aiming to enhance the attention and problem-solving scope of LLMs through decomposition. Specifically, the information determination module for eliminating redundant information and the brand-new prompt structure based on problem classification greatly enhance the model’s attention. Additionally, the inclusion of self-correction and active learning modules greatly expands the problem-solving scope of LLMs, hence improving the upper limit of LLM-based approaches. Extensive experiments conducted on three datasets demonstrate that our approach outperforms other methods by a significant margin. About 2-3 percentage point improvements compared to the existing baseline on the Spider Dev, Spider-Realistic, and Bird Dev datasets and new SOTA results on the Spider Test dataset are achieved. Our code is available on GitHub: https://github.com/FlyingFeather/DEA-SQL.