type
Post
status
Published
date
Jun 20, 2026 07:02
slug
rec-weekly-en-2026-W25
summary
This week's recommendation systems research clusters around three themes: full lifecycle co-design for large-scale graph retrieval, Transformer-based sequence modeling deployed across platforms, and a shift from DNN to Transformer-native architectures for multi-task ranking. Meta, Airbnb, Alibaba, Shopee, and NetEase Cloud Music all published online deployment work with specific AB metrics. Thread 1 (End-to-end design of large-scale graph systems): Meta's RankGraph-2 (Meta) couples graph construction, representation learning, and online serving into a joint optimization. On a billion-node graph, it reduces compute cost by 83%, achieves 3.8x the recall of GAT+Deep Graph Infomax, and lifts online CTR by +0.96% and CVR by +2.75%. Along the same line, HighLevel's ScoreGate (HighLevel) uses a statistical fusion of two scores to adaptively control the number of retrieved chunks in RAG. In production, it cuts tokens by 34.8% while maintaining recall between 97.77% and 99.34%. Thread 2 (Generative recommendation moves from theory to production): Airbnb's JourneyFormer (Airbnb) deploys a Transformer-based sequence model in search ranking to handle long, sparse user behavior. Alibaba's OneBar (Alibaba) uses an end-to-end generative framework for video e-commerce query recommendation, achieving a 21.67% GMV lift. Both point to the same direction: generative recommendation needs engineering trade-offs under real constraints (cold start, latency, sparse labels) rather than chasing offline metrics alone. Thread 3 (Transformer-native paradigm for multi-task ranking): Shopee's OneRank (Shopee) eliminates the encoder-predictor separation, embedding task-private channels and gradient isolation inside the Transformer. Online CTR is up +1.2%, CVR +0.8%. NetEase Cloud Music's PIANO (NetEase Cloud Music) uses a learnable [CLS] token for list-level multi-objective re-ranking, lifting CTR by +0.62% and CVR by +4.45%. Both demonstrate that internalizing multi-objective reasoning into the Tr
tags
Recommendation Systems
Weekly
Papers
category
Rec Tech Report
icon
📚
password
priority
1
Weekly Overview
This week's recommendation systems research clusters around three themes: full lifecycle co-design for large-scale graph retrieval, Transformer-based sequence modeling deployed across platforms, and a shift from DNN to Transformer-native architectures for multi-task ranking. Meta, Airbnb, Alibaba, Shopee, and NetEase Cloud Music all published online deployment work with specific AB metrics.
Thread 1 (End-to-end design of large-scale graph systems): Meta's RankGraph-2 (Meta) couples graph construction, representation learning, and online serving into a joint optimization. On a billion-node graph, it reduces compute cost by 83%, achieves 3.8x the recall of GAT+Deep Graph Infomax, and lifts online CTR by +0.96% and CVR by +2.75%. Along the same line, HighLevel's ScoreGate (HighLevel) uses a statistical fusion of two scores to adaptively control the number of retrieved chunks in RAG. In production, it cuts tokens by 34.8% while maintaining recall between 97.77% and 99.34%.
Thread 2 (Generative recommendation moves from theory to production): Airbnb's JourneyFormer (Airbnb) deploys a Transformer-based sequence model in search ranking to handle long, sparse user behavior. Alibaba's OneBar (Alibaba) uses an end-to-end generative framework for video e-commerce query recommendation, achieving a 21.67% GMV lift. Both point to the same direction: generative recommendation needs engineering trade-offs under real constraints (cold start, latency, sparse labels) rather than chasing offline metrics alone.
Thread 3 (Transformer-native paradigm for multi-task ranking): Shopee's OneRank (Shopee) eliminates the encoder-predictor separation, embedding task-private channels and gradient isolation inside the Transformer. Online CTR is up +1.2%, CVR +0.8%. NetEase Cloud Music's PIANO (NetEase Cloud Music) uses a learnable [CLS] token for list-level multi-objective re-ranking, lifting CTR by +0.62% and CVR by +4.45%. Both demonstrate that internalizing multi-objective reasoning into the Transformer stack is more effective than bolting on an MLP.
Generative Recommendation and Sequence Modeling
This week's sequence modeling work covers four distinct scenarios: long user journeys at Airbnb (JourneyFormer), music search re-ranking at NetEase Cloud Music (PIANO), e-commerce video query recommendation (OneBar), and academic work on interpretable intent mining (SAERec) and time-aware semantic IDs (ChronoID). The common trend is that Transformer is now the de facto architecture, but the focus is shifting from "model design" to "data selection and signal fusion."
JourneyFormer (Airbnb) — deployed in Airbnb's search ranking. The core challenge is long, exploratory user sequences with sparse labels (bookings). The paper details design decisions: only keep key events (searches, clicks, saves, etc.), use hash-based dimension reduction for ID embeddings, and control the number of heads per layer in a multi-layer Transformer. The biggest contribution is training acceleration: precomputing fixed-length contexts, gradient accumulation, and mixed-precision training cut training time from weeks to days. Two online surfaces showed substantial business metric improvements (exact numbers not disclosed).
PIANO (NetEase Cloud Music) — targets music search re-ranking. Unlike JourneyFormer, it needs to leverage historical search queries (not just behavior sequences) to align with the current intent. It proposes a Query-Driven Interest Refiner (QDIR) that applies cross-attention to historical queries, and an Information Aggregation Node (IAN) — a learnable [CLS] token that aggregates the candidate list and predicts CTR and CVR. Online AB test at NetEase Cloud Music shows CTR +0.62%, CVR +4.45%. The innovation is introducing query history into sequence modeling, whereas traditional methods like DSIN only use behavior sessions.
OneBar (Alibaba) — generative query recommendation. It directly generates queries with a Transformer instead of retrieving them. Core design: a collaborative multimodal intent alignment module (fuses video multimodal embeddings with user behavior anchors), an end-to-end architecture with a prompt compression mechanism to reduce online latency, and progressive preference learning to replace an external reward model. Online experiments: query exposure +16.91%, query clicks +18.68%, guided orders +20.36%, GMV +21.67%. Compared to HiGR's approach, OneBar extends generative recommendation to the new scenario of query recommendation and uses behavior data to directly steer generation.
SAERec (academic) — uses sparse autoencoders (SAE) to disentangle fine-grained intents from LLM text embeddings, constructing an interpretable intent space. The core is converting text into intent candidates, then injecting them into sequence modeling via a multi-branch attention mechanism. On Amazon Beauty, Sports, Toys, and Yelp, it outperforms SASRec, BERT4Rec, MIND and other baselines. The idea draws from PFN (Prior-data Fitted Networks) but pivots toward interpretability.
ChronoID (Meta) — the first systematic exploration of injecting explicit time signals into semantic IDs. The design space unfolds along three dimensions: temporal encoding, temporal fusion, and temporal alignment. Experiments show that time-aware semantic IDs consistently improve generative recommendation (e.g., OneRec, TIGER), especially when interaction time has a strong correlation with item semantics (e.g., seasonal goods). This work introduces a temporal dimension to generative recommendation, addressing the time-agnostic limitation of models like TIGER.
SRPFN (academic) — a sequence model pre-trained on synthetic priors that can make recommendations without gradient updates on the target domain. Pre-trained on 25.6M synthetic sequences, it adapts at inference time with a small support set from the target domain. It achieves best or second-best performance on 5 datasets with only ~1.5M parameters. The idea comes from Prior-data Fitted Networks (PFNs) but is applied to sequential recommendation for the first time. If scaled to industrial levels, this paradigm could dramatically reduce model update costs.
- Takeaway: Industrial deployments of sequence modeling are shifting from "model innovation" to "engineering trade-offs and signal fusion" — how to select events, handle long sequences with sparse labels, and leverage historical queries matters more than improving attention mechanisms. Generative recommendation (OneBar, ChronoID, SRPFN) is rapidly closing the gap from theory to production, but deployment constraints (latency, cold start) remain the main bottleneck.
- What to watch next: Will Airbnb disclose the specific online lifts for JourneyFormer? Can SRPFN scale to longer sequences and more complex behaviors (e.g., post-purchase returns)? Will time-aware semantic IDs (ChronoID) show online AB gains inside Meta?
Multimodal and Cold-Start Retrieval
This week's multimodal retrieval work concentrates on two scenarios: e-commerce video cold start and general multimodal document retrieval. All four papers involve fine-tuning or extending CLIP-family models, but with different emphases.
VCG (Zalando) — deployed in Zalando's e-commerce video recommendation. It uses domain-fine-tuned CLIP to map users and videos into the same semantic space for zero-shot retrieval. A key finding: generative (LLM) embeddings are strong at attribute prediction but suffer from embedding space collapse, degrading retrieval performance; discriminative (CLIP) embeddings are more stable. Online AB testing shows a 50% lift in deep video completion rate. This work continues the approach of BiListing (Airbnb) but targets video rather than image-text listings, and evaluates the differences between embedding paradigms.
Stellar (academic) — addresses the memory problem of multi-vector retrieval (e.g., ColBERT). Core innovations: Lexical Representation-based Filtering (LRF) uses MLLM for sparse encoding to achieve efficient filtering, and Disk-backed Late Interaction (DLI) stores token embeddings on disk and loads them on demand. On 4 standard benchmarks plus a newly constructed large-scale dataset, memory and latency are reduced by 1-2 orders of magnitude without sacrificing retrieval effectiveness. Compared to ColBERT, Stellar wins mainly on engineering scalability.
ELVA (academic) — proposes the concept of "grain blindness," where contrastive learning in multimodal retrieval treats all negative samples equally, ignoring different similarity granularities. It replaces reward models with Rule-based Reinforcement Learning (RLVR) and incorporates ranking constraints into training. On MRBench (a new multi-granularity query benchmark), it outperforms CLIP, BLIP-2, and others by 13.1%. This work shares the same spirit as ESANS on negative sampling but takes the RL path.
OneBar (already analyzed in Generative Recommendation, but clustering places it here under multimodal and cold-start retrieval; we respect that and re-examine from the multimodal angle without repeating the full analysis. Briefly note its multimodal intent alignment module.)
OneBar from a multimodal perspective: Its collaborative multimodal intent alignment module fuses video frame visual embeddings with user behavior anchors — similar to VCG in spirit, but OneBar uses multimodal signals for generation (query recommendation) rather than retrieval. Both systems use CLIP-style models for domain adaptation, but OneBar also integrates behavior signals for preference learning because it needs to generate text queries.
- Takeaway: Multimodal retrieval is moving from single-task to multimodal fusion + cold-start-specific design. Discriminative embeddings (CLIP) still outperform generative embeddings (LLM) in retrieval, but generative embeddings have value for attribute understanding. E-commerce video cold start (VCG, OneBar) is a hot scenario because it naturally lacks interaction history.
- What to watch next: Can Stellar be deployed in RAG pipelines to replace ColBERT? Is ELVA's RLVR training stable on larger (tens of millions) datasets? Can the cold-start gains in e-commerce video generalize to other domains (e.g., live-streaming e-commerce)?
Large-Scale Systems and Efficiency Optimization
On system efficiency, four papers this week come from industry or are close to production, each tackling scalability from a different angle: full-lifecycle co-design for graph retrieval (RankGraph-2), soft token compression (Token Factory), calibration metrics for semantic caching (Closing the Calibration Gap), label-agnostic adaptation for multilingual re-ranking (Querit-Reranker), and adaptive retrieval counts (ScoreGate). Notably, Meta's RankGraph-2 and HighLevel's ScoreGate are already deployed with online metrics reported.
RankGraph-2 (Meta) — deployed in Meta's similarity retrieval (U2U2I, U2I2I). Core insight: graph construction, training, and serving are mutually constrained — the needs of adjacent stages must be addressed first. Specific approaches: (1) popularity-bias-corrected sub-sampling reduces billions of edges; (2) personalized PageRank precomputes multi-hop neighborhoods; (3) residual quantization clustering indexes (co-learned with training) replace online KNN, cutting serving compute cost by 83%. Recall leads GAT+Deep Graph Infomax by 3.8x and PyTorch-BigGraph by 2.1x. Online CTR +0.96%, CVR +2.75%, and the system powers 20+ retrieval surfaces. Compared to MVCrec's graph contrastive learning, RankGraph-2 emphasizes system-level co-design rather than model innovation.
Token Factory (Google) — addresses the problem of long input feature prompts in large recommendation models. It converts traditional signals (dense/sparse features) into "soft tokens," injecting them directly into the Transformer's embedding space rather than textifying them. The goal is to replace the discretization schemes of models like TIGER, and it validates effectiveness in a production-scale environment. Online AB metrics are not reported, but the idea (soft tokens instead of textification) can substantially reduce decoding length in LRM (Large Recommendation Model) inference.
ScoreGate (HighLevel) — in RAG scenarios, it abandons fixed top-k and uses a statistical fusion of bi-encoder similarity scores and cross-encoder re-ranking scores to adaptively determine the number of retrieved chunks. Core contribution: no additional inference calls — it only uses existing scores. On MS MARCO, MRR@10=0.401 while reducing chunks by 35%; in an internal production environment (300 queries, Fleiss kappa=0.87), zero false positives, 34.8% fewer tokens, and only 31ms latency. Compared to fixed retrieval in Unified Supervision, ScoreGate achieves dynamic threshold calibration.
Querit-Reranker (Baidu) — a family of multilingual re-rankers (0.4B/4B parameters), with a label-agnostic distribution adaptation pipeline: synthetic query mining, teacher soft labels, and spherical linear interpolation model merging. On BEIR, nDCG@10 improves from 54.11 to 59.28 (+9.6%); on MIRACL, from 59.87 to 67.70 (+13.1%). The method continues the line of distillation + synthetic data but adds model merging to reduce deployment overhead. Industrial value: no labeling required to transfer to new domains.
Closing the Calibration Gap (Redis) — a critical analysis of evaluation metrics for semantic caching. It proposes P-CHR AUC and Calibration Retention Rate (CRR), proving that PR-AUC leads to systematic wrong selections at deployment time. Core conclusion: model selection is a calibration problem, not a ranking problem. Though less broad than other works, it has direct guidance for RAG system operations.
- Takeaway: The bottleneck in large-scale systems has shifted from model design to system coordination and engineering trade-offs. RankGraph-2's lifecycle co-design, ScoreGate's zero-extra-inference control, and Token Factory's soft token compression all point toward "making existing components work together more efficiently" rather than pursuing single-point improvements. Calibration and evaluation metrics (Closing the Calibration Gap) are gaining industry attention.
- What to watch next: Can RankGraph-2's co-learned clustering index benefit other graph retrieval methods? Can ScoreGate's adaptive strategy generalize to multimodal retrieval scenarios? What is the specific latency gain for Token Factory in full online deployment?
Fine-Ranking Multi-Task and Ad Bidding
This week's multi-task fine-ranking work comes from Shopee (OneRank) and NetEase Cloud Music (PIANO, already analyzed in the generative section). On ad bidding, there is an offline bidding work from Meituan (DRIVE).
OneRank (Shopee) — a Transformer-native multi-task ranking framework that eliminates the encoder-predictor separation in traditional DNNs. Forward direction: bottom-up construction of task-private channels (via task-conditioned information selection, candidate-aware contextualization, and controlled cross-task interaction). Backward direction: cross-task gradient separation to prevent negative transfer. Dynamic matching scores replace static MLP scoring. On Shopee's production dataset, CTR +1.2%, CVR +0.8%; also improves on Criteo and Avazu. Compared to MMOE and PLE, OneRank embeds multi-task logic into every Transformer layer rather than just the top, making multi-task reasoning a native architectural property.
DRIVE (Meituan) — an offline automated bidding framework based on Decision Transformer. Three core components: distribution modeling (outputs a distribution of bid prices rather than a single value), retrieval-augmented candidate generation (retrieves similar cases from historical high-quality decisions), and value evaluation (selects the optimal point using a value function). It consistently outperforms DT, CQL, and others on AuctionNet. Similar to PRO-Bid but with the addition of retrieval augmentation, which alleviates distribution drift under long-tail traffic.
- Takeaway: Multi-task ranking is moving from "DNN + MoE" to "Transformer internalized." OneRank's private channels + gradient separation is worth adopting. In ad bidding, the hybrid approach of offline RL plus retrieval augmentation (DRIVE) may be a trend, akin to RAG's success in NLP.
- What to watch next: How well does OneRank scale to more tasks (e.g., watch time, number of reviews)? Can DRIVE go online in AB tests and demonstrate robustness to distribution drift?
Directions to Watch
- The signal selection revolution in sequence modeling. Multiple papers this week challenge the default assumption of "what constitutes a sequence": JourneyFormer details which events to include and which to exclude; Beyond Positive Signals (2606.15252) mixes negative behaviors (skips, low engagement) with positive behaviors, improving relative AUC by 1.9%–9.6% across 5 architectures. This direction shows that when model architectures converge, data-side innovation (signal selection, polarity fusion) can provide low-cost marginal gains. Next, watch for which negative signals have the most discriminative power and how to collect them cheaply in production pipelines.
- Practical conditions for generative recommendation. OneBar (Alibaba) and ChronoID (Meta) demonstrate that generative recommendation can produce online gains on real e-commerce and social platforms. Key conditions: (1) efficient inference acceleration (OneBar's prompt compression, staged computation in xGR); (2) explicit modeling of the temporal dimension (ChronoID); (3) fusion with multimodal signals (OneBar). Next observation: can generative recommendation challenge the dominance of the retrieval stage in traditional retrieval-ranking pipelines? More cross-platform evidence is needed.
- System efficiency is no longer single-point optimization but lifecycle co-design. RankGraph-2's three-stage co-design and ScoreGate's zero-extra-inference control both show that efficiency optimization is shifting from "squeezing model size / accelerating operators" to "redesigning how system modules interact." Next metric: how many systems can replicate similar full-stack co-design and achieve comparable gains? Will RankGraph-2's co-learned clustering index become standard for graph retrieval?
Paper Roundup
Generative Recommendation and Sequence Modeling
JourneyFormer (Airbnb) — Transformer sequence model deployed in Airbnb search ranking, focuses on long sequences with sparse labels, achieves substantial business metric improvements on 2 online surfaces.
SAERec — Uses sparse autoencoders to construct fine-grained interpretable intents from LLM text embeddings, outperforms SASRec, BERT4Rec, etc. on 4 datasets.
Beyond Positive Signals — Proposes mixed-polarity behavior sequences (positive and negative behaviors interleaved), improves relative AUC by 1.9%–9.6% across 5 architectures.
HoloRec — Achieves generative recommendation via hierarchical semantic encoding matrix and endogenous chain-of-thought, significant gains in sparse scenarios.
SRPFN — Sequence recommendation model pre-trained on synthetic priors, no gradient updates needed on target domain, best or second-best on 5 datasets.
ChronoID — First systematic injection of explicit time signals into semantic IDs, consistently improves generative recommendation.
Multimodal and Cold-Start Retrieval
Stellar — Memory optimization framework for multi-vector retrieval (LRF+DLI), reduces memory and latency by 1-2 orders of magnitude without sacrificing retrieval quality.
ELVA — Applies rule-based reinforcement learning (RLVR) to multimodal retrieval to mitigate grain blindness, improves by 13.1% on MRBench.
VCG (Zalando) — CLIP domain adaptation for zero-shot cold-start video retrieval in e-commerce, online deep video completion rate +50%.
OneBar (Alibaba) — End-to-end generative query recommendation with multimodal intent alignment and progressive preference learning, online GMV +21.67%.
Large-Scale Systems and Efficiency Optimization
RankGraph-2 (Meta) — Three-stage co-design for billion-node graph retrieval, serving cost down 83%, online CTR +0.96%, CVR +2.75%.
Token Factory — Converts traditional signals into soft tokens to avoid LLM prompt explosion, validated in a production-scale recommendation environment.
Closing the Calibration Gap — Proposes P-CHR AUC and CRR, reveals that semantic cache model selection is a calibration problem, not a ranking problem.
Querit-Reranker — Multilingual re-rankers (0.4B/4B) with label-agnostic distribution adaptation, BEIR nDCG@10 +9.6%.
ScoreGate (HighLevel) — Dual-score statistical fusion to control RAG retrieval count, production environment reduces tokens by 34.8%, recall 97.77%–99.34%.
Fine-Ranking Multi-Task and Ad Bidding
OneRank (Shopee) — Transformer-native multi-task ranking with task-private channels and gradient separation, online CTR +1.2%, CVR +0.8%.
PIANO (NetEase Cloud Music) — Historical query alignment + list-level learnable [CLS] token for music search re-ranking, online CTR +0.62%, CVR +4.45%.
DRIVE — Distribution modeling + retrieval-augmented value evaluation for automated bidding, generalizes better than DT, CQL, etc. on AuctionNet.