Papers for

e-commerce platform engineers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

ChronicleRec compresses long user history for better recommendations

ChronicleRec: Pre-training Temporally Anchored Tokens for Lifelong User Modeling

Abstract: Modeling ultra-long user behavior sequences is crucial for industrial recommendation and online advertising, yet directly feeding thousands of historical actions into ranking models is computationally prohibitive, while truncation discards long-range signals. Existing lifelong-interest methods retrieve target-relevant behaviors for each candidate, coupling long-sequence modeling with candidate scoring and repeated online cost. Recent target-independent compression methods enable cached user summaries, but often append query tokens at the sequence end and use bidirectional encoding, producing unordered and redundant summaries that overlook temporal structure. We propose ChronicleRec, a pre-train-and-transfer framework that compresses an ultra-long behavior sequence once into a chronologically ordered set of Chronicle Tokens. ChronicleRec applies a recency-aware multi-granularity merge, preserving recent behaviors while coarsening distant history. It then interleaves query tokens with the merged sequence and uses a causal encoder, so each query summarizes only the history before its temporal anchor. A multi-horizon design masks different recent-history windows across parallel branches to learn complementary long-range interests. The compressor is pre-trained with a mask-and-predict objective that reconstructs held-out recent behaviors from compressed older history, aligning historical signals with near-present intent. Since Chronicle Tokens are target-independent, they can be cached per user, decoupling ultra-long sequence modeling from online candidate scoring. Experiments on KuaiRand and Tencent AdLive show that ChronicleRec outperforms recent-window and single-pass compression baselines while approaching full-attention performance. Token analyses reveal temporally organized and complementary representations, and a seven-day online A/B test confirms significant production gains.

Fri 11 SeptInformation Retrieval
The gist
Many apps and websites try to understand what users like by looking at their long history of actions, but processing all that data takes too much time and computer power. The authors propose ChronicleRec, which squashes a user’s long sequence of actions into a shorter, ordered summary that still keeps important signals and the timing of events. They designed the method to look only at past actions before each query, learning from different recent time windows to capture interests over time. Their tests show this method improves how recommendations match user intent while running faster online.
Open 2609.12375v1

E-commerce product attribute extraction made accurate and efficient

Scaling E-Commerce Attribute Extraction with Parallel Decoding

Abstract: Customers rely on specific product attributes to compare products and make purchasing decisions, but e-commerce catalogs are messy and unstructured, making it difficult to identify which attributes matter most and extract them at scale. Standard Attribute Value Extraction (AVE) systems treat all attributes equally, producing large, inconsistent attribute sets that do not reflect the factors consumers use to differentiate products. We introduce a two-stage LLM pipeline that first discovers a compact, ranked schema of purchase-discriminative attributes for each product category, then extracts their values from catalog text using a fine-tuned compact LLM (Qwen3-4B) with Hyper-Parallel Decoding (HPD). This pipeline achieves 85% extraction accuracy, on par with the foundational LLM it was distilled from, while reducing inference costs by 92% over foundational LLMs, enabling production-scale use for product discovery and catalog enrichment. The resulting category-level structured representations effectively constitute automatically constructed product knowledge bases, providing consistent, comparable attributes across varied product categories that can ground downstream knowledge-intensive applications.

Wed 9 SeptComputation and Language
The gist
Online product catalogs are often messy, making it hard to find the important details shoppers care about. The authors created a two-step process using language models to first find the most useful product features and then quickly pull out those details from product descriptions. Their method matches the accuracy of larger models but uses much less computing power. This helps build clear, organized product info that can improve shopping and product searching.
Open 2609.09716v1

Eager improves e-commerce search query suggestions using clicked items

EAGER: Enrich-and-Align Generative Query Recommendation from Clicked Items in E-commerce Search

Abstract: E-commerce platforms increasingly display clickable query suggestions alongside items in the user feed, enabling users to refine or expand their intent without manually reformulating queries. Existing approaches either mine suggestions from historical logs -- limited to past behavior and blind to long-tail, personalized intents -- or rely on off-the-shelf LLMs whose lack of platform-specific knowledge yields fluent but generic queries disconnected from real click behavior. We propose EAGER (Enrich-and-AliGn gEnerative Query Recommendation), a two-stage framework for generating query suggestions from clicked items. In the enrichment stage, supervised fine-tuning (SFT) follows a four-stage curriculum that scales information richness (from item-only to user-conditioned) and reasoning depth (from direct to chain-of-thought). Each stage incorporates rationale augmentation, diversity regularization, and self-distillation. In the alignment stage, we post-train via GRPO with a hybrid reward of multiple rule-based business signals and a preference-aware click reward. Extensive offline experiments and online A/B test demonstrate the effectiveness of EAGER, which has been deployed in production at a major e-commerce platform.

Mon 7 SeptInformation Retrieval
The gist
Online shopping sites often show suggested searches to help users find what they want more easily. The authors found that previous methods either relied too much on old data or just generated generic suggestions not based on real user behavior. They developed EAGER, a two-step method that learns from the items users clicked on to create better, more personalized search suggestions. This system was tested extensively and is now used in a major online shopping platform.
Open 2609.07143v1