ResearchPod Summary
In modern recommender systems, the Generator-Evaluator (G-E) framework is used for list-wise reranking. However, standard Auto-Regressive (AR) generators suffer from two primary bottlenecks: high latency due to step-by-step generation and significant error accumulation caused by the teacher-forcing training paradigm. The authors investigate whether the generation horizon can be reduced without sacrificing the model's ability to capture complex inter-item dependencies.
The authors propose Pair-Space Generation (PSG), which reformulates the generation process by elevating the "atom" of generation from individual items to ordered item pairs. By treating each pair as a single token, the system generates a sequence of length L/2 instead of L. To handle the resulting quadratic increase in vocabulary size, the authors implement a dynamic pair-token representation module that computes embeddings on-the-fly using a pre-trained encoder. This allows the generator to remain flexible across different candidate sets without needing a massive, static embedding table. The model is trained using a combination of next-token prediction and reinforcement learning (GRPO) to align generated sequences with user engagement metrics.
PSG offers three key advantages:
In production deployment on Kuaishou, serving over 400 million daily active users, PSG delivered a 0.178% increase in per-user stay time, demonstrating that the efficiency gains translate directly into improved user experience.
This paper provides a practical, scalable solution to the latency-accuracy trade-off in generative recommendation. By shifting the focus from item-level to pair-level generation, it addresses the fundamental limitations of autoregressive decoding in high-throughput industrial systems. The method is orthogonal to existing architectural optimizations, meaning it can be combined with other techniques like speculative decoding or efficient attention mechanisms to further push the boundaries of real-time recommendation.
AI-generated third-party summary by ResearchPod. Not official content or an endorsement by the paper authors or affiliated organizations.