EDBT 2026 Demo / reviewers in the wild / expert
Shangqing Tu
dblp:296/1838
· DBLP profile ↗
8ranked-venue papers in the field
3as first author
8since 2021 · last 2025
0009-0008-0640-3413ORCID · corroborated
Domains — venue-derived; a paper can count in several
Data Mining & Knowledge Discovery · 4 (2 first)Information Retrieval & Web Search · 4 (1 first)
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2025 | VocQuiz: Vocabulary Question Generation for English Language EducationabstractDesigning effective English vocabulary question generation tools demands a shift from labor-intensive content creation to large language model (LLM) automation that can adapt to varied educational contexts. Current approaches tend to offer a limited variety of question types, which restricts their practical application in real classroom settings. To better meet the demands of English teaching institutions, we present VocQuiz, a vocabulary question generation system that 1) combines generalization capabilities of LLMs with reliable language resources, including dictionaries, NLP datasets and authentic corpora, to enhance both contextual relevance and linguistic accuracy; 2) supports multiple question types, such as similar word selection and word collocation, to accommodate various instructional requirements; and 3) employs an iterative workflow to iteratively generate and refine questions, ensuring high-quality outputs and consistent assessment standards. VocQuiz offers a practical, deployable solution that helps educators create quiz-based instructional materials, reducing preparation effort while effectively assessing students' mastery of vocabulary. Yongqi Li 0012, Jiajun Wu 0024, Shangqing Tu, Jifan Yu, Huiqin Liu, Lei Hou 0001, Juan-Zi Li |
CIKM | 3 |
| 2025 | EduCraft: A System for Generating Pedagogical Lecture Scripts from Long-Context Multimodal PresentationsabstractEducators face substantial workload pressures, with significant time invested in preparing teaching materials. Generating high-quality lecture scripts from multimodal presentations is a particularly demanding aspect of this preparation. This paper introduces EduCraft, a novel system designed to automate Lecture Script Generation (LSG), addressing key difficulties such as comprehensive multimodal understanding, long-context coherence, and instructional design efficacy. EduCraft features a modular architecture comprising: (1) a Multimodal Input Processing pipeline for robust data extraction and association from slides; (2) a core Lecture Script Generation Engine with instruction-guided VLM and Caption+LLM workflows for pedagogical synthesis; (3) an optional Knowledge Augmentation Module using Retrieval-Augmented Generation (RAG) for enhanced factual grounding; and (4) a Model Integration and Deployment Interface supporting diverse AI models and providing a deployable API. Extensive evaluations, including human assessments and a new automated evaluation framework, demonstrate that EduCraft significantly outperforms strong baselines and teacher-refined scripts in producing coherent, readable, and pedagogically sound lecture scripts. By effectively tackling core LSG challenges, EduCraft offers a practical, configurable solution to reduce educator workload and enhance educational content creation. We open-source EduCraft at https://github.com/wyuc/EduCraft. Yucheng Wang 0015, Jifan Yu, Daniel Zhang-Li, Joy Lim Jia Yin, Shangqing Tu, Haoxuan Li 0003, Zhiyuan Liu 0001, Huiqin Liu, Lei Hou 0001, Juan-Zi Li, Bin Xu 0001 |
CIKM | 5 |
| 2025 | Knowledge-to-Jailbreak: Investigating Knowledge-driven Jailbreaking Attacks for Large Language ModelsabstractLarge language models (LLMs) have been increasingly applied to various domains, which triggers increasing concerns about LLMs' safety on specialized domains, e.g. medicine. Despite prior explorations on general jailbreaking attacks, there are two challenges for applying existing attacks on testing the domain-specific safety of LLMs: (1) Lack of professional knowledge-driven attacks(2) Insufficient coverage of domain knowledge. To bridge this gap, we propose a new task, knowledge-to-jailbreak, which aims to generate jailbreaking attacks from domain knowledge, requiring both attack effectiveness and knowledge relevance. We collect a large-scale dataset with 12,974 knowledge-jailbreak pairs and fine-tune a large language model as jailbreak-generator, to produce domain knowledge-specific jailbreaks. Experiments on 13 domains and 8 target LLMs demonstrate the effectiveness of jailbreak-generator in generating jailbreaks that are both threatening to the target LLMs and relevant to the given knowledge. We also apply our method to an out-of-domain knowledge base, showing that jailbreak-generator can generate jailbreaks that are comparable in harmfulness to those crafted by human experts. Data and code are available at: https://github.com/THU-KEG/Knowledge-to-Jailbreak/. Shangqing Tu, Zhuoran Pan, Wenxuan Wang 0001, Zhexin Zhang, Jifan Yu, Hongning Wang, Lei Hou 0001, Juan-Zi Li |
KDD (2) | 1 |
| 2025 | SoAy: A Solution-based LLM API-using Methodology for Academic Information Seeking
Yuanchun Wang 0002, Jifan Yu, Zijun Yao 0002, Jing Zhang 0001, Shangqing Tu, Yiyang Fu, Youhe Feng, Jinkai Zhang, Yuanyao Li, Huihui Yuan, Lei Hou 0001, Juan-Zi Li, Jie Tang 0001 |
KDD (1) | 6 |
| 2025 | Awaking the Slides: A Tuning-free and Knowledge-regulated AI Tutoring System via Language Model CoordinationabstractThe vast pre-existing slides serve as rich and important materials to carry lecture knowledge. However, effectively leveraging lecture slides to serve students is difficult due to the multi-modal nature of slide content and the heterogeneous teaching actions. We study the problem of discovering effective designs that convert a slide into an interactive lecture. We develop Slide2Lecture, a tuning-free and knowledge-regulated intelligent tutoring system that can (1) effectively convert an input lecture slide into a structured teaching agenda consisting of a set of heterogeneous teaching actions; (2) create and manage an interactive lecture that generates responsive interactions catering to student learning demands while regulating the interactions to follow teaching actions. Slide2Lecture contains a complete pipeline for learners to obtain an interactive classroom experience to learn the slide. For teachers and developers, Slide2Lecture enables customization to cater to personalized demands. Slide2Lecture's online deployment has made more than 200K interactions with students in the 3K lecture sessions. We release our implementation at https://github.com/NewEduAI/Release. Daniel Zhang-Li, Zheyuan Zhang 0002, Jifan Yu, Joy Lim Jia Yin, Shangqing Tu, Linlu Gong, Zhiyuan Liu 0001, Huiqin Liu, Lei Hou 0001, Juan-Zi Li |
KDD (1) | 5 |
| 2024 | R-Eval: A Unified Toolkit for Evaluating Domain Knowledge of Retrieval Augmented Large Language ModelsabstractLarge language models have achieved remarkable success on general NLP tasks, but they may fall short for domain-specific problems. Recently, various Retrieval-Augmented Large Language Models (RALLMs) are proposed to address this shortcoming. However, existing evaluation tools only provide a few baselines and evaluate them on various domains without mining the depth of domain knowledge. In this paper, we address the challenges of evaluating RALLMs by introducing the R-Eval toolkit, a Python toolkit designed to streamline the evaluation of different RAG workflows in conjunction with LLMs. Our toolkit, which supports popular built-in RAG workflows and allows for the incorporation of customized testing data on the specific domain, is designed to be user-friendly, modular, and extensible. We conduct an evaluation of 21 RALLMs across three task levels and two representative domains, revealing significant variations in the effectiveness of RALLMs across different tasks and domains. Our analysis emphasizes the importance of considering both task and domain requirements when choosing a RAG workflow and LLM combination. We are committed to continuously maintaining our platform at https://github.com/THU-KEG/R-Eval to facilitate both the industry and the researchers. Shangqing Tu, Yuanchun Wang 0002, Jifan Yu, Yaran Shi, Xiaozhi Wang, Jing Zhang 0001, Lei Hou 0001, Juan-Zi Li |
KDD | 1 |
| 2023 | LittleMu: Deploying an Online Virtual Teaching Assistant via Heterogeneous Sources Integration and Chain of Teach PromptsabstractTeaching assistants have played essential roles in the long history of education. However, few MOOC platforms are providing human or virtual teaching assistants to support learning for massive online students due to the complexity of real-world online education scenarios and the lack of training data. In this paper, we present a virtual MOOC teaching assistant, LittleMu with minimum labeled training data, to provide question answering and chit-chat services. Consisting of two interactive modules of heterogeneous retrieval and language model prompting, LittleMu first integrates structural, semi- and unstructured knowledge sources to support accurate answers for a wide range of questions. Then, we design delicate demonstrations named "Chain of Teach" prompts to exploit the large-scale pre-trained model to handle complex uncollected questions. Except for question answering, we develop other educational services such as knowledge-grounded chit-chat. We test the system's performance via both offline evaluation and online deployment. Since May 2020, our LittleMu system has served over 80,000 users with over 300,000 queries from over 500 courses on XuetangX MOOC platform, which continuously contributes to a more convenient and fair education. Our code, services, and dataset will be available at https://github.com/THU-KEG/VTA. Shangqing Tu, Zheyuan Zhang 0002, Jifan Yu, Zijun Yao 0002, Lei Hou 0001, Juan-Zi Li |
CIKM | 1 |
| 2023 | MoocRadar: A Fine-grained and Multi-aspect Knowledge Repository for Improving Cognitive Student Modeling in MOOCsabstractStudent modeling, the task of inferring a student's learning characteristics through their interactions with coursework, is a fundamental issue in intelligent education. Although the recent attempts from knowledge tracing and cognitive diagnosis propose several promising directions for improving the usability and effectiveness of current models, the existing public datasets are still insufficient to meet the need for these potential solutions due to their ignorance of complete exercising contexts, fine-grained concepts, and cognitive labels. In this paper, we present MoocRadar, a fine-grained, multi-aspect knowledge repository consisting of 2,513 exercise questions, 5,600 knowledge concepts, and over 12 million behavioral records. Specifically, we propose a framework to guarantee a high-quality and comprehensive annotation of fine-grained concepts and cognitive labels. The statistical and experimental results indicate that our dataset provides the basis for the future improvements of existing methods. Moreover, to support the convenient usage for researchers, we release a set of tools for data querying, model adaption, and even the extension of our repository, which are now available at https://github.com/THU-KEG/MOOC-Radar. Jifan Yu, Mengying Lu, Qingyang Zhong, Zijun Yao 0002, Shangqing Tu, Zhengshan Liao, Xiaoya Li 0002, Manli Li, Lei Hou 0001, Hai-Tao Zheng 0002, Juan-Zi Li, Jie Tang 0001 |
SIGIR | 5 |