VLDB 2026 Research / reviewers in the wild / expert
Chao Zhang 0096
dblp:94/3019-96
· DBLP profile ↗
8ranked-venue papers in the field
4as first author
8since 2021 · last 2026
0009-0007-2579-8783ORCID · conflict
Domains — venue-derived; a paper can count in several
Information Retrieval & Web Search · 5 (2 first)Database Systems & Data Management · 1 (1 first)Data Mining & Knowledge Discovery · 1 (1 first)Knowledge Engineering, Semantic Web & Information Systems · 1
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | ProEchoMem: Enhancing Long Video Understanding via Multi-Trace Probe-Echo MemoryabstractLarge vision-language models (LVLMs) have shown significant progress in video understanding, but they struggle to scale to long videos due to limited context windows. Existing methods reduce input dimensionality via frame sampling and feature compression, yet discard details and incur high computational cost for post-training. In contrast, retrieval-augmented generation (RAG) that indexes long videos for query retrieval and memory-based methods that maintain evolving long-term stores, offer a lighter and deployment-friendly solution. Nevertheless, they rely on shallow retrieval that selects only top-ranked segments and fails to integrate information across multiple relevant video episodes. Inspired by Multiple-Trace Theory in cognitive psychology, we revisit long video understanding from a probe-echo perspective, in which human episodic memories are activated and integrated in parallel. Building on this insight, we propose ProEchoMem, a cognitive-inspired framework that simulates the probe-echo mechanism: (1) Incremental Episodic Memory Construction builds structured knowledge graphs from video streams; (2) Probe-Driven Memory Activation generates probe signals from user queries to activate all stored traces simultaneously; (3) Memory Echo Synthesis integrates activated traces into a coherent and structured memory echo. Experiments on LongerVideos, LVBench, and cross-domain settings demonstrate the effectiveness of ProEchoMem, with multi-trace probing achieving up to 14.2% higher relevance and ablation studies validating the contribution of each module. The code is available at https://github.com/Applied-Machine-Learning-Lab/SIGIR26_ProEchoMem Derong Xu, Yanxin Chen, Pengyue Jia, Chao Zhang 0096, Maolin Wang 0001, Yiqi Wang 0001, Jipeng Qiang, Xuetao Wei, Hongzhi Yin, Tong Xu 0001, Xiangyu Zhao 0001 |
SIGIR | 5 |
| 2026 | SIGMA: A Semantic-Grounded Instruction-Driven Generative Multi-Task Recommender at AliExpressabstractWith the rapid evolution of Large Language Models (LLMs), generative recommendation is gradually reshaping the paradigm of recommender systems. However, most existing methods remain confined to the interaction-driven next-item prediction paradigm, struggling to keep pace with the latest evolving trends or address the diverse recommendation tasks along with business-specific requirements in real-world scenarios. To this end, we present SIGMA, a Semantic-Grounded Instruction-Driven Generative Multi-Task Recommender deployed at AliExpress. Specifically, we first ground item entities in a unified latent space capturing both general semantics and collaborative signals. Building upon this, we introduce a hybrid item tokenization method for both precise modeling and efficient generation. Moreover, we construct a large-scale multi-task supervised fine-tuning dataset empowering SIGMA to fulfill various recommendation demands via instruction-following. Finally, we design a three-step item generation procedure integrated with an adaptive probabilistic fusion mechanism to calibrate the output distributions based on task-specific requirements for recommendation accuracy and diversity. Extensive offline experiments and online A/B tests demonstrate the effectiveness of SIGMA across various real-world recommendation tasks. Yang Yu 0038, Lei Kou, Huaikuan Yi, Yayu Cao, Chao Zhang 0096, Bing Wang 0017, Xiaoyi Zeng |
SIGIR | 7 |
| 2026 | TeaRAG: A Token-Efficient Agentic Retrieval-Augmented Generation FrameworkabstractRetrieval-Augmented Generation (RAG) utilizes external knowledge to augment Large Language Models’ (LLMs) reliability. For flexibility, agentic RAG employs autonomous, multi-round retrieval and reasoning to resolve queries. Although recent agentic RAG has improved via reinforcement learning, they often incur substantial token overhead from search and reasoning. This tradeoff prioritizes accuracy over efficiency. To address this issue, this work proposes TeaRAG, a T oken- e fficient a gentic RAG framework capable of compressing both retrieval content and reasoning steps. (1) First, the retrieved content is compressed by augmenting chunk-based semantic retrieval with a graph retrieval using concise triplets. A knowledge association graph is then built from semantic similarity and co-occurrence. Finally, Personalized PageRank is leveraged to highlight key knowledge within this graph, reducing the number of tokens per retrieval. (2) Besides, to reduce reasoning steps, Iterative Process-aware Direct Preference Optimization (IP-DPO) is proposed. Specifically, our reward function evaluates the knowledge sufficiency by a knowledge matching mechanism, while penalizing excessive reasoning steps. This design can produce high-quality preference-pair datasets, supporting iterative DPO to improve reasoning conciseness. Across six datasets, TeaRAG improves the average Exact Match by \(4\%\) and \(2\%\) while reducing output tokens by \(61\%\) and \(59\%\) on Llama3-8B-Instruct and Qwen2.5-14B-Instruct, respectively. Code is available at https://github.com/Applied-Machine-Learning-Lab/TeaRAG . Chao Zhang 0096, Yuhao Wang 0006, Derong Xu, Yuanjie Lyu, Shuochen Liu, Tong Xu 0001, Xiangyu Zhao 0001, Yan Gao 0017, Yao Hu 0002, Enhong Chen |
ACM Trans. Inf. Syst. | 1 |
| 2025 | NoteLLM-2: Multimodal Large Representation Models for Recommendation
Chao Zhang 0096, Di Wu 0055, Tong Xu 0001, Xiangyu Zhao 0001, Yan Gao 0017, Yao Hu 0002, Enhong Chen |
KDD (1) | 1 |
| 2023 | Non-IID always Bad? Semi-Supervised Heterogeneous Federated Learning with Local Knowledge EnhancementabstractFederated learning (FL) is important for privacy-preserving services by training models without collecting raw user data. Most FL algorithms assume all data is annotated, which is impractical due to the high cost of labeling data in real applications. To alleviate the reliance on labeled data, semi-supervised federated learning (SSFL) has been proposed to utilize unlabeled data on clients to improve model performance. However, most existing methods either have privacy issues which share models trained on other clients, or generate pseudo-labels for unlabeled local datasets with the global model, which is usually biased towards the global data distribution. The latter may lead to sub-optimal accuracy of pseudo-labels, due to the gap between the local data distribution and the global model, especially in non-IID settings. In this paper, we propose a semi-supervised heterogeneous federated learning method with local knowledge enhancement, called FedLoKe, which aims to train an accurate global model from both labeled and unlabeled local data with non-IID distributions. Specifically, in FedLoKe, the server maintains a global model to capture global data distribution, and each client learns a local model to capture local data distribution. Since the distribution captured by the local model is aligned with the local data distribution, we utilize it to generate high-accuracy pseudo-labels of the unlabeled dataset for global model training. To prevent the local model from severely overfitting the small number of local labeled data, we further use the exponential moving average and apply the global model to generate pseudo-labels for local modeling training. Experiments on four datasets show the effectiveness of FedLoKe. Our code is available at: https://github.com/zcfinal/FedLoKe. Chao Zhang 0096, Fangzhao Wu, Jingwei Yi, Derong Xu, Yang Yu 0038, Jindong Wang 0001, Yidong Wang 0003, Tong Xu 0001, Xing Xie 0001, Enhong Chen |
CIKM | 1 |
| 2023 | Beyond the Limits of Predictability in Human Mobility Prediction: Context-Transition PredictabilityabstractUrban human mobility prediction is forecasting how people move in cities. It is crucial for many smart city applications including route optimization, preparing for dramatic shifts in modes of transportation, or mitigating the epidemic spread of viruses such as COVID-19. Previous research propose the maximum predictability to derive the theoretical limits of accuracy that any predictive algorithm could achieve on predicting urban human mobility. However, existing maximum predictability only considers the sequential patterns of human movements and neglects the contextual information such as the time or the types of places that people visit, which plays an important role in predicting one's next location. In this paper, we propose new theoretical limits of predictability, namely Context-Transition Predictability, which not only captures the sequential patterns of human mobility, but also considers the contextual information of human behavior. We compare our Context-Transition Predictability with other kinds of predictability and find that it is larger than these existing ones. We also show that our proposed Context-Transition Predictability provides us a better guidance on which predictive algorithm to be used for forecasting the next location when considering the contextual information. Source code is at https://github.com/zcfinal/ContextTransitionPredictability. Chao Zhang 0096, Kai Zhao 0011, Meng Chen 0003 |
IEEE Trans. Knowl. Data Eng. | 1 |
| 2022 | MM-Rec: Visiolinguistic Model Empowered Multimodal News RecommendationabstractNews representation is critical for news recommendation. Most existing methods learn news representations only from news texts while ignoring the visual information of news. In fact, users may click news not only due to the interest in news titles but also the attraction of news images. Thus, images are useful for representing news and predicting news clicks. Pretrained visiolinguistic models are powerful in multi-modal understanding, which can represent news from both textual and visual contents. In this paper, we propose a multimodal news recommendation method that can incorporate both textual and visual information of news to learn multimodal news representations. We first extract region-of-interests (ROIs) from news images via object detection. We then use a pre-trained visiolinguistic model to encode both news texts and image ROIs and model their inherent relatedness using co-attentional Transformers. In addition, we propose a crossmodal candidate-aware attention network to select relevant historical clicked news for the accurate modeling of user interest in candidate news. Experiments validate that incorporating multimodal news information can effectively improve the performance of news recommendation. Chuhan Wu, Fangzhao Wu, Tao Qi 0001, Chao Zhang 0096, Yongfeng Huang 0001, Tong Xu 0001 |
SIGIR | 4 |
| 2022 | PR-LTTE: Link travel time estimation based on path recovery from large-scale incomplete trip data
Tianao Sun, Kai Zhao 0011, Chao Zhang 0096, Meng Chen 0003, Xiaohui Yu 0001 |
Inf. Sci. | 3 |