Table of Contents
Fetching ...

Multi-Behavior Sequential Modeling with Transition-Aware Graph Attention Network for E-Commerce Recommendation

Hanqi Jin, Gaoming Yang, Zhangming Chan, Yapeng Yuan, Longbin Li, Fei Sun, Yeqiu Yang, Jian Wu, Yuning Jiang, Bo Zheng

TL;DR

The paper tackles the challenge of scalable multi-behavior sequential modeling in e-commerce by introducing Transition-Aware Graph Attention Network (TGA). TGA builds a structured sparse graph from item-, category-, and neighbor-level transitions and applies a transition-aware attention mechanism, achieving linear-time complexity $O(N \cdot L \cdot d^2)$ relative to sequence length, which is favorable over Transformers for long sequences. Empirical results on Taobao datasets show state-of-the-art AUC while delivering substantial speedups, and online A/B tests report CVR and GMV improvements, underscoring practical impact. The approach is designed for industrial deployment, with ablations confirming the contributions of each transition view and deeper layers enhancing high-order dependency modeling.

Abstract

User interactions on e-commerce platforms are inherently diverse, involving behaviors such as clicking, favoriting, adding to cart, and purchasing. The transitions between these behaviors offer valuable insights into user-item interactions, serving as a key signal for understanding evolving preferences. Consequently, there is growing interest in leveraging multi-behavior data to better capture user intent. Recent studies have explored sequential modeling of multi-behavior data, many relying on transformer-based architectures with polynomial time complexity. While effective, these approaches often incur high computational costs, limiting their applicability in large-scale industrial systems with long user sequences. To address this challenge, we propose the Transition-Aware Graph Attention Network (TGA), a linear-complexity approach for modeling multi-behavior transitions. Unlike traditional transformers that treat all behavior pairs equally, TGA constructs a structured sparse graph by identifying informative transitions from three perspectives: (a) item-level transitions, (b) category-level transitions, and (c) neighbor-level transitions. Built upon the structured graph, TGA employs a transition-aware graph Attention mechanism that jointly models user-item interactions and behavior transition types, enabling more accurate capture of sequential patterns while maintaining computational efficiency. Experiments show that TGA outperforms all state-of-the-art models while significantly reducing computational cost. Notably, TGA has been deployed in a large-scale industrial production environment, where it leads to impressive improvements in key business metrics.

Multi-Behavior Sequential Modeling with Transition-Aware Graph Attention Network for E-Commerce Recommendation

TL;DR

The paper tackles the challenge of scalable multi-behavior sequential modeling in e-commerce by introducing Transition-Aware Graph Attention Network (TGA). TGA builds a structured sparse graph from item-, category-, and neighbor-level transitions and applies a transition-aware attention mechanism, achieving linear-time complexity relative to sequence length, which is favorable over Transformers for long sequences. Empirical results on Taobao datasets show state-of-the-art AUC while delivering substantial speedups, and online A/B tests report CVR and GMV improvements, underscoring practical impact. The approach is designed for industrial deployment, with ablations confirming the contributions of each transition view and deeper layers enhancing high-order dependency modeling.

Abstract

User interactions on e-commerce platforms are inherently diverse, involving behaviors such as clicking, favoriting, adding to cart, and purchasing. The transitions between these behaviors offer valuable insights into user-item interactions, serving as a key signal for understanding evolving preferences. Consequently, there is growing interest in leveraging multi-behavior data to better capture user intent. Recent studies have explored sequential modeling of multi-behavior data, many relying on transformer-based architectures with polynomial time complexity. While effective, these approaches often incur high computational costs, limiting their applicability in large-scale industrial systems with long user sequences. To address this challenge, we propose the Transition-Aware Graph Attention Network (TGA), a linear-complexity approach for modeling multi-behavior transitions. Unlike traditional transformers that treat all behavior pairs equally, TGA constructs a structured sparse graph by identifying informative transitions from three perspectives: (a) item-level transitions, (b) category-level transitions, and (c) neighbor-level transitions. Built upon the structured graph, TGA employs a transition-aware graph Attention mechanism that jointly models user-item interactions and behavior transition types, enabling more accurate capture of sequential patterns while maintaining computational efficiency. Experiments show that TGA outperforms all state-of-the-art models while significantly reducing computational cost. Notably, TGA has been deployed in a large-scale industrial production environment, where it leads to impressive improvements in key business metrics.
Paper Structure (19 sections, 6 equations, 3 figures, 2 tables)

This paper contains 19 sections, 6 equations, 3 figures, 2 tables.

Figures (3)

  • Figure 1: Item-level, category-level, and neighbor-level transitions in multi-behavior sequential modeling.
  • Figure 2: The overview of our proposed TGA approach.
  • Figure 3: AUC Performance with Increasing TGA Layers.