Feng Zhang 0047

dblp:48/1294-47 · DBLP profile ↗
← Back
11ranked-venue papers in the field
0as first author
11since 2021 · last 2026
0009-0009-2635-2710ORCID · conflict

Domains — venue-derived; a paper can count in several

Information Retrieval & Web Search · 8Data Mining & Knowledge Discovery · 2Database Systems & Data Management · 1
YearPublicationVenuePosition
2026 Cross-Domain Preference Transfer for Promoting Engagement with Built-in Chatbots
abstract
Recent advances in large language models have led to the widespread integration of chatbots as built-in features in modern applications. To model user latent intent and provide topic guidance, the question recommendation task serves as the entry point for built-in chatbots. In content-consuming applications, interaction data with built-in chatbots exhibit notable sparsity, while consuming signals account for the majority of user behaviors. Therefore, it is reasonable to incorporate content-consuming signals for user preference modeling. However, a significant domain shift exists between the preference in the content-consuming domain and that in the conversational topic domain. It is non-trivial to transfer those cross-domain signals into meaningful suggested topics that are aligned with users' real-time preference.
Guanyu Jiang, Yongchun Zhu, Jingwu Chen, Feng Zhang 0047
SIGIR7
2026 Bridging Passive and Active: Enhancing Conversation Starter Recommendation via Active Expression Modeling
abstract
Large Language Model (LLM)-driven conversational search is shifting information retrieval from reactive keyword matching to proactive, open-ended dialogues. In this context, Conversation Starters are widely deployed to provide personalized query recommendations that help users initiate dialogues. Conventionally, recommending these starters relies on a closed ''exposure-click'' loop. Yet, this feedback loop mechanism traps the system in an echo chamber where, compounded by data sparsity, it fails to capture the dynamic nature of conversational search intents shaped by the open world. As a result, the system skews towards popular but generic suggestions. In this work, we uncover an untapped paradigm shift to shatter this harmful feedback loop: harnessing user ''free will'' through active user expressions. Unlike traditional recommendations, conversational search empowers users to bypass menus entirely through manually typed queries. The open-world intents in active queries hold the key to breaking this loop. However, incorporating them is non-trivial: (1) there exists an inherent distribution shift between active queries and formulated starters. (2) Furthermore, the ''non-ID-able'' nature of open text renders traditional item-based popularity statistics ineffective for large-scale industrial streaming training. To this end, we propose Passive-Active Bridge (PA-Bridge), a novel framework that employs an adversarial distribution aligner to bridge the distributional gap between passively recommended starters and active expressions. Moreover, we introduce a semantic discretizer to enable the deployment of popularity debiasing algorithms. Online A/B tests on our platform, which serves hundreds of millions of users, demonstrate that PA-Bridge significantly boosts the Feature Penetration Rate by 0.54% and User Active Days by 0.04%.
Yiqing Wu, Guanyu Jiang, Yongchun Zhu, Jingwu Chen, Feng Zhang 0047
SIGIR7
2026 Make It Long, Keep It Fast: End-to-End 10k-Sequence Modeling at Billion Scale on Douyin
Jia-Qi Yang 0001, Zhishan Zhao, Beichuan Zhang 0002, Xuanyuan Luo, Jinan Ni, Yuhang Qi, Zhifang Fan, Hangyu Wang, Qiwei Chen, Feng Zhang 0047
WWW14
2025 PMTA: Perception-Aware Multi-Task Transformer Network for Personalized Multi-Domain Adaptation
abstract
The escalating complexity of industrial recommendation systems, characterized by diverse user behaviors and cross-domain application scenarios, necessitates advanced multi-task and multi-domain learning paradigms. Existing methods often struggle with efficient knowledge transfer across tasks and domains due to semantic gaps and distribution shifts. To address these challenges, we propose the Perception-Aware Multi-Task Transformer Network for Personalized Multi-Domain Adaptation (PMTA), a unified framework that integrates three key innovations: First, the Task Prompt Encoding (TPE) module dynamically generates prompts by synthesizing personalized user data with task-specific information. Second, the Transformer-based Multi-Task Perception (TMPN) network enables adaptive cross-task knowledge transfer through attention mechanisms. Third, the Multi-Domain Adaptation (MDAN) component captures domain-specific behavior patterns via learnable prior information. Experimental results demonstrate PMTA's effectiveness, achieving 0.168% increase in watch time and significant improvements in engagement metrics (AAD: +0.0113%, AAH: +0.0608%). Deployed on Douyin and Douyin Lite, it significantly improves recommendation quality and drives commercial success.
Chenbin Zhang, Xiaoxie Zhu, Xingchao Cao, Qiwei Chen, Feng Zhang 0047, Zuotao Liu
CIKM5
2025 RankMixer: Scaling Up Ranking Models in Industrial Recommenders
abstract
Recent progress on large language models (LLMs) has spurred interest in scaling up recommendation systems, yet two practical obstacles remain. First, training and serving cost on industrial Recommenders must respect strict latency bounds and high QPS demands. Second, most human-designed feature-crossing modules in ranking models were inherited from the CPU era and fail to exploit modern GPUs, resulting in low Model Flops Utilization (MFU) and poor scalability. We introduce RankMixer, a hardware-aware model design tailored towards a unified and scalable feature-interaction architecture. RankMixer retains the transformer's high parallelism while replacing quadratic self-attention with multi-head token mixing module for higher efficiency. Besides, RankMixer maintains both the modeling for distinct feature subspaces and cross-feature-space interactions with Per-token FFNs. We further extend it to one billion parameters with a Sparse-MoE variant for higher ROI. A dynamic routing strategy is adapted to address the inadequacy and imbalance of experts training. Experiments show RankMixer's superior scaling abilities on a trillion-scale production dataset. By replacing previously diverse handcrafted low-MFU modules with RankMixer, we boost the model MFU from 4.5% to 45%, and scale our online ranking model parameters by two orders of magnitude while maintaining roughly the same inference latency. We verify RankMixer's universality with online A/B tests across two core application scenarios (Recommendation and Advertisement). Finally, we launch 1B Dense-Parameters RankMixer for full traffic serving without increasing the serving cost, which improves user active days by 0.3% and total in-app usage duration by 1.08%.
Zhifang Fan, Xiaoxie Zhu, Hangyu Wang, Xintian Han, Xinmin Wang, Wenlin Zhao, Huizhi Yang, Zhe Chen 0015, Yuchao Zheng 0002, Qiwei Chen, Feng Zhang 0047, Peng Xu 0017, Zuotao Liu
CIKM16
2025 Asymmetric Diffusion Recommendation Model
abstract
Recently, motivated by the outstanding achievements of diffusion models, the diffusion process has been employed to strengthen representation learning in recommendation systems. Most diffusion-based recommendation models typically utilize standard Gaussian noise in symmetric forward and reverse processes in continuous data space. Nevertheless, the samples derived from recommendation systems inhabit a discrete data space, which is fundamentally different from the continuous one. Moreover, Gaussian noise has the potential to corrupt personalized information within latent representations. In this work, we propose a novel and effective method, named Asymmetric Diffusion Recommendation Model (AsymDiffRec), which learns forward and reverse processes in an asymmetric manner. We define a generalized forward process that simulates the missing features in real-world recommendation samples. The reverse process is then performed in an asymmetric latent feature space. To preserve personalized information within the latent representation, a task-oriented optimization strategy is introduced. In the serving stage, the raw sample with missing features is regarded as a noisy input to generate a denoising and robust representation for the final prediction. By equipping base models with AsymDiffRec, we conduct online A/B tests, achieving improvements of +0.131% and +0.166% in terms of users' active days and app usage duration respectively. Additionally, the extended offline experiments also demonstrate improvements. AsymDiffRec has been implemented in the Douyin Music App.
Yongchun Zhu, Guanyu Jiang, Jingwu Chen, Feng Zhang 0047, Zuotao Liu
CIKM4
2025 AdaF2M2: Comprehensive Learning and Responsive Leveraging Features in Recommendation System
Yongchun Zhu, Jingwu Chen, Yitan Li, Feng Zhang 0047, Zuotao Liu
DASFAA (6)5
2025 Real-time Indexing for Large-scale Recommendation by Streaming Vector Quantization Retriever
abstract
Retrievers, which form one of the most important recommendation stages, are responsible for efficiently selecting possible positive samples to the later stages under strict latency limitations. Because of this, large-scale systems always rely on approximate calculations and indexes to roughly shrink candidate scale, with a simple ranking model. Most of the existing methods mainly focus on incorporating complicated ranking models. However, index structure is not improved, which also bottlenecks the whole effectiveness. In this paper, we propose a novel index structure: streaming Vector Quantization model, as a new generation of retrieval paradigm. Streaming VQ attaches items with indexes in real time, granting it immediacy. Moreover, through meticulous verification of possible variants, it achieves additional benefits like index balancing and reparability, enabling it to support complicated ranking models as existing approaches. Streaming VQ has been deployed and replaced all major retrievers in Douyin and Douyin Lite, resulting in remarkable user engagement gain.
Xingyan Bin, Jianfei Cui, Wujie Yan, Zhichen Zhao, Xintian Han, Chongyang Yan, Feng Zhang 0047, Zuotao Liu
KDD (2)7
2025 Pyramid Mixer: Multi-dimensional Multi-period Interest Modeling for Sequential Recommendation
abstract
Sequential recommendation, a critical task in recommendation systems, predicts the next user action based on the understanding of the user's historical behaviors. Conventional studies mainly focus on cross-behavior modeling with self-attention based methods while neglecting comprehensive user interest modeling for more dimensions. In this study, we propose a novel sequential recommendation model, Pyramid Mixer, which leverages the MLP-Mixer architecture to achieve efficient and complete modeling of user interests. Our method learns comprehensive user interests via cross-behavior and cross-feature user sequence modeling. The mixer layers are stacked in a pyramid way for cross-period user temporal interest learning. Through extensive offline and online experiments, we demonstrate the effectiveness and efficiency of our method, and we obtain a +0.106% improvement in user stay duration and a +0.0113% increase in user active days in the online A/B test. The Pyramid Mixer has been successfully deployed on the industrial platform, demonstrating its scalability and impact in real-world applications.
Zhifang Fan, Qiwei Chen, Chenbin Zhang, Yuchao Zheng 0002, Feng Zhang 0047, Zuotao Liu
SIGIR8
2024 Trinity: Syncretizing Multi-/Long-Tail/Long-Term Interests All in One
abstract
Interest modeling in recommender system has been a constant topic for improving user experience, and typical interest modeling tasks (e.g. multi-interest, long-tail interest and long-term interest) have been investigated in many existing works. However, most of them only consider one interest in isolation, while neglecting their interrelationships. In this paper, we argue that these tasks suffer from a common "interest amnesia" problem, and a solution exists to mitigate it simultaneously. We propose a novel and unified framework in the retrieval stage, "Trinity", to solve interest amnesia problem and improve multiple interest modeling tasks. We construct a real-time clustering system that enables us to project items into enumerable clusters, and calculate statistical interest histograms over these clusters. Based on these histograms, Trinity recognizes underdelivered themes and remains stable when facing emerging hot topics. Its derived retrievers have been deployed on the recommender system of Douyin, significantly improving user experience and retention. We believe that such practical experience can be well generalized to other scenarios.
Liu Jiang, Jianfei Cui, Zhichen Zhao, Xingyan Bin, Feng Zhang 0047, Zuotao Liu
KDD6
2024 Interest Clock: Time Perception in Real-Time Streaming Recommendation System
abstract
User preferences follow a dynamic pattern over a day, e.g., at 8 am, a user might prefer to read news, while at 8 pm, they might prefer to watch movies. Time modeling aims to enable recommendation systems to perceive time changes to capture users' dynamic preferences over time, which is an important and challenging problem in recommendation systems. Especially, streaming recommendation systems in the industry, with only available samples of the current moment, present greater challenges for time modeling. There is still a lack of effective time modeling methods for streaming recommendation systems. In this paper, we propose an effective and universal method Interest Clock to perceive time information in recommendation systems. Interest Clock first encodes users' time-aware preferences into a clock (hour-level personalized features) and then uses Gaussian distribution to smooth and aggregate them into the final interest clock embedding according to the current time for the final prediction. By arming base models with Interest Clock, we conduct online A/B tests, obtaining +0.509% and +0.758% improvements on user active days and app duration respectively. Besides, the extended offline experiments show improvements as well. Interest Clock has been deployed on Douyin Music App.
Yongchun Zhu, Jingwu Chen, Yitan Li, Feng Zhang 0047, Zuotao Liu
SIGIR5